m68k: export atari_keyb_init
m68k: export atari_keyb_init This patch fixes the following build error: .. 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 Signed-off-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
6b41016032
commit
9e893bb853
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue