]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
serial167: Kill unused variables
authorGeert Uytterhoeven <geert@linux-m68k.org>
Wed, 14 Apr 2010 16:48:50 +0000 (18:48 +0200)
committerGeert Uytterhoeven <geert@linux-m68k.org>
Mon, 17 May 2010 19:37:38 +0000 (21:37 +0200)
commits 638157bc1461f6718eeca06bedd9a09cf1f35c36 ("serial167: prepare to push
BKL down into drivers") and 4165fe4ef7305609a96c7f248cefb9c414d0ede5 ("tty:
Fix up char drivers request_room usage") removed code without removing the
corresponding variables:

| drivers/char/serial167.c: In function 'cd2401_rx_interrupt':
| drivers/char/serial167.c:630: warning: unused variable 'len'
| drivers/char/serial167.c: In function 'cy_ioctl':
| drivers/char/serial167.c:1531: warning: unused variable 'val'

Remove the variables to kill the warnings.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
drivers/char/serial167.c

index 8dfd24721a82156e6c7415ecd5274e7a2ad45780..78a62ebe75c72e02c2a9f2ba1ff6a469f63a07ea 100644 (file)
@@ -627,7 +627,6 @@ static irqreturn_t cd2401_rx_interrupt(int irq, void *dev_id)
        char data;
        int char_count;
        int save_cnt;
-       int len;
 
        /* determine the channel and change to that context */
        channel = (u_short) (base_addr[CyLICR] >> 2);
@@ -1528,7 +1527,6 @@ static int
 cy_ioctl(struct tty_struct *tty, struct file *file,
         unsigned int cmd, unsigned long arg)
 {
-       unsigned long val;
        struct cyclades_port *info = tty->driver_data;
        int ret_val = 0;
        void __user *argp = (void __user *)arg;