[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1289143255-587-1-git-send-email-arun@bhanu.net>
Date: Sun, 7 Nov 2010 23:20:55 +0800
From: Arun Bhanu <arun@...nu.net>
To: linux-kernel@...r.kernel.org
Cc: Greg Kroah-Hartman <gregkh@...e.de>,
Andrew Morton <akpm@...ux-foundation.org>,
Stefani Seibold <stefani@...bold.net>,
Alan Cox <alan@...ux.intel.com>,
Andi Kleen <ak@...ux.intel.com>, Arun Bhanu <arun@...nu.net>
Subject: [PATCH] drivers/char/nozomi.c: fix unused variable compiler warning
Remove the unused variable argp to fix the following warning.
drivers/char/nozomi.c: In function ‘ntty_ioctl’:
drivers/char/nozomi.c:1831:8: warning: unused variable ‘argp’
Signed-off-by: Arun Bhanu <arun@...nu.net>
---
drivers/char/nozomi.c | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/drivers/char/nozomi.c b/drivers/char/nozomi.c
index dd3f9b1..294d03e 100644
--- a/drivers/char/nozomi.c
+++ b/drivers/char/nozomi.c
@@ -1828,7 +1828,6 @@ static int ntty_ioctl(struct tty_struct *tty, struct file *file,
unsigned int cmd, unsigned long arg)
{
struct port *port = tty->driver_data;
- void __user *argp = (void __user *)arg;
int rval = -ENOIOCTLCMD;
DBG1("******** IOCTL, cmd: %d", cmd);
--
1.7.3.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists