]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
arch/cris/arch-v10/drivers/sync_serial.c:628: error: 'ret' undeclared (first use...
authorWANG Cong <xiyou.wangcong@gmail.com>
Tue, 26 Jul 2011 10:14:33 +0000 (20:14 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Mon, 1 Aug 2011 03:36:26 +0000 (13:36 +1000)
'ret' should be 'err'.

Reported-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com>
Cc: Mikael Starvik <starvik@axis.com>
Cc: Jesper Nilsson <jesper.nilsson@axis.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
arch/cris/arch-v10/drivers/sync_serial.c

index 8502653736113b0c51cba3c529ec20285ea4203e..d2ad9e7a17381208b0b05ca641edb251819e99de 100644 (file)
@@ -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)