diff options
Diffstat (limited to 'arch/cris/arch-v10/drivers/sync_serial.c')
-rw-r--r-- | arch/cris/arch-v10/drivers/sync_serial.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/cris/arch-v10/drivers/sync_serial.c b/arch/cris/arch-v10/drivers/sync_serial.c index 850265373611..466af40c5822 100644 --- a/arch/cris/arch-v10/drivers/sync_serial.c +++ b/arch/cris/arch-v10/drivers/sync_serial.c | |||
@@ -158,7 +158,7 @@ static int sync_serial_open(struct inode *inode, struct file *file); | |||
158 | static int sync_serial_release(struct inode *inode, struct file *file); | 158 | static int sync_serial_release(struct inode *inode, struct file *file); |
159 | static unsigned int sync_serial_poll(struct file *filp, poll_table *wait); | 159 | static unsigned int sync_serial_poll(struct file *filp, poll_table *wait); |
160 | 160 | ||
161 | static int sync_serial_ioctl(struct file *file, | 161 | static long sync_serial_ioctl(struct file *file, |
162 | unsigned int cmd, unsigned long arg); | 162 | unsigned int cmd, unsigned long arg); |
163 | static ssize_t sync_serial_write(struct file *file, const char *buf, | 163 | static ssize_t sync_serial_write(struct file *file, const char *buf, |
164 | size_t count, loff_t *ppos); | 164 | size_t count, loff_t *ppos); |
@@ -625,11 +625,11 @@ static int sync_serial_open(struct inode *inode, struct file *file) | |||
625 | *R_IRQ_MASK1_SET = 1 << port->data_avail_bit; | 625 | *R_IRQ_MASK1_SET = 1 << port->data_avail_bit; |
626 | DEBUG(printk(KERN_DEBUG "sser%d rec started\n", dev)); | 626 | DEBUG(printk(KERN_DEBUG "sser%d rec started\n", dev)); |
627 | } | 627 | } |
628 | ret = 0; | 628 | err = 0; |
629 | 629 | ||
630 | out: | 630 | out: |
631 | mutex_unlock(&sync_serial_mutex); | 631 | mutex_unlock(&sync_serial_mutex); |
632 | return ret; | 632 | return err; |
633 | } | 633 | } |
634 | 634 | ||
635 | static int sync_serial_release(struct inode *inode, struct file *file) | 635 | static int sync_serial_release(struct inode *inode, struct file *file) |