[<prev] [next>] [day] [month] [year] [list]
Message-ID: <1407302439-642-1-git-send-email-Li.Xiubo@freescale.com>
Date: Wed, 6 Aug 2014 13:20:39 +0800
From: Xiubo Li <Li.Xiubo@...escale.com>
To: <arnd@...db.de>, <gregkh@...uxfoundation.org>, <tytso@....edu>
CC: <linux-kernel@...r.kernel.org>, Xiubo Li <Li.Xiubo@...escale.com>
Subject: [PATCH] random: remove the unused parameter to avoid the compile warning.
drivers/char/random.c: In function SYSC_getrandom:
drivers/char/random.c:1526:6: warning: unused variable r [-Wunused-variable]
int r;
^
Signed-off-by: Xiubo Li <Li.Xiubo@...escale.com>
---
drivers/char/random.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/drivers/char/random.c b/drivers/char/random.c
index 37d8970..c18d41d 100644
--- a/drivers/char/random.c
+++ b/drivers/char/random.c
@@ -1523,8 +1523,6 @@ const struct file_operations urandom_fops = {
SYSCALL_DEFINE3(getrandom, char __user *, buf, size_t, count,
unsigned int, flags)
{
- int r;
-
if (flags & ~(GRND_NONBLOCK|GRND_RANDOM))
return -EINVAL;
--
1.8.5
--
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