[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20071105170819.GE12045@stusta.de>
Date: Mon, 5 Nov 2007 18:08:19 +0100
From: Adrian Bunk <bunk@...nel.org>
To: geert@...ux-m68k.org, zippel@...ux-m68k.org
Cc: linux-kernel@...r.kernel.org, linux-m68k@...ts.linux-m68k.org
Subject: [2.6 patch] export atari_keyb_init
This patch fixes the following build error:
<-- snip -->
...
MODPOST 25 modules
ERROR: "atari_keyb_init" [drivers/input/mouse/atarimouse.ko] undefined!
ERROR: "atari_keyb_init" [drivers/input/keyboard/atakbd.ko] undefined!
make[2]: *** [__modpost] Error 1
<-- snip -->
Signed-off-by: Adrian Bunk <bunk@...nel.org>
---
arch/m68k/atari/atakeyb.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
5b25e716d9b676d27ebb3d61852e0d96589d974c
diff --git a/arch/m68k/atari/atakeyb.c b/arch/m68k/atari/atakeyb.c
index 880add1..8a2a53b 100644
--- a/arch/m68k/atari/atakeyb.c
+++ b/arch/m68k/atari/atakeyb.c
@@ -565,7 +565,7 @@ void atari_kbd_leds(unsigned int leds)
static int atari_keyb_done = 0;
-int __init atari_keyb_init(void)
+int atari_keyb_init(void)
{
if (atari_keyb_done)
return 0;
@@ -631,6 +631,7 @@ int __init atari_keyb_init(void)
atari_keyb_done = 1;
return 0;
}
+EXPORT_SYMBOL_GPL(atari_keyb_init);
int atari_kbd_translate(unsigned char keycode, unsigned char *keycodep, char raw_mode)
{
-
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