]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
tty: fix warning in synclink driver
authorAndres Salomon <dilinger@queued.net>
Tue, 9 Nov 2010 22:10:38 +0000 (14:10 -0800)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Thu, 17 May 2012 15:21:38 +0000 (11:21 -0400)
commit dc98d9650891661a20842a8eef9e76536046d897 upstream.

During builds I see the following warning -

  CC [M]  drivers/char/pcmcia/synclink_cs.o
drivers/char/pcmcia/synclink_cs.c:2194: warning: ‘mgslpc_get_icount’ defined but not used

The function is a callback meant to be assigned to get_icount (added during 0587102cf).
Fix accordingly.

Signed-off-by: Andres Salomon <dilinger@queued.net>
Acked-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
drivers/char/pcmcia/synclink_cs.c

index efa810e588b24f2c582fa602cd9af3bf7bf4ff36..bb3977a826ab06ea34e3e6d04f5464caf8994f1c 100644 (file)
@@ -2839,6 +2839,7 @@ static const struct tty_operations mgslpc_ops = {
        .hangup = mgslpc_hangup,
        .tiocmget = tiocmget,
        .tiocmset = tiocmset,
+       .get_icount = mgslpc_get_icount,
        .proc_fops = &mgslpc_proc_fops,
 };