[<prev] [next>] [day] [month] [year] [list]
Message-ID: <495AF01D.5070505@oracle.com>
Date: Tue, 30 Dec 2008 20:07:57 -0800
From: Randy Dunlap <randy.dunlap@...cle.com>
To: linux-kernel@...r.kernel.org
CC: Andrew Morton <akpm@...ux-foundation.org>,
Dmitry Torokhov <dmitry.torokhov@...il.com>
Subject: [PATCH mmotm] input: fix function arg list
From: Randy Dunlap <randy.dunlap@...cle.com>
Fix function args build warning:
mmotm-2008-1230-1605/drivers/input/input.c:1661: warning: function declaration isn't a prototype
Signed-off-by: Randy Dunlap <randy.dunlap@...cle.com>
cc: Dmitry Torokhov <dmitry.torokhov@...il.com>
---
drivers/input/input.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- mmotm-2008-1230-1605.orig/drivers/input/input.c
+++ mmotm-2008-1230-1605/drivers/input/input.c
@@ -1657,7 +1657,7 @@ static const struct file_operations inpu
.open = input_open_file,
};
-static void __init input_init_abs_bypass()
+static void __init input_init_abs_bypass(void)
{
const unsigned int *p;
for (p = input_abs_bypass_init_data; *p; p++)
--
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