aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWANG Cong <[email protected]>2011-08-03 16:21:14 -0700
committerLinus Torvalds <[email protected]>2011-08-03 14:25:21 -1000
commit4b851d88192c22cf77418a0b4c45b5c789276837 (patch)
tree6bc0f1927642398a1df3bc1559d91a52d882435a
parentd4969213f9e75ec1bfa6ea65c279c64cab7d1bd6 (diff)
cris: fix a build error in sync_serial_open()
Fix: arch/cris/arch-v10/drivers/sync_serial.c:628: error: 'ret' undeclared (first use in this function) 'ret' should be 'err'. Reported-by: Geert Uytterhoeven <[email protected]> Signed-off-by: WANG Cong <[email protected]> Cc: Mikael Starvik <[email protected]> Cc: Jesper Nilsson <[email protected]> Cc: <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--arch/cris/arch-v10/drivers/sync_serial.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/cris/arch-v10/drivers/sync_serial.c b/arch/cris/arch-v10/drivers/sync_serial.c
index 850265373611..d2ad9e7a1738 100644
--- a/arch/cris/arch-v10/drivers/sync_serial.c
+++ b/arch/cris/arch-v10/drivers/sync_serial.c
@@ -625,11 +625,11 @@ static int sync_serial_open(struct inode *inode, struct file *file)
*R_IRQ_MASK1_SET = 1 << port->data_avail_bit;
DEBUG(printk(KERN_DEBUG "sser%d rec started\n", dev));
}
- ret = 0;
+ err = 0;
out:
mutex_unlock(&sync_serial_mutex);
- return ret;
+ return err;
}
static int sync_serial_release(struct inode *inode, struct file *file)