diff options
author | Michael Schmitz <schmitz@biophys.uni-duesseldorf.de> | 2008-12-28 23:00:45 +0100 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2011-05-19 18:19:11 +0200 |
commit | 186f200a95cbd13c291cdd3ddeb07aad0a3782cc (patch) | |
tree | 426de0e7ecc259e696b2c4504a015668a95d889a /drivers/input/keyboard/atakbd.c | |
parent | input/atari: Use the correct mouse interrupt hook (diff) | |
download | linux-186f200a95cbd13c291cdd3ddeb07aad0a3782cc.tar.xz linux-186f200a95cbd13c291cdd3ddeb07aad0a3782cc.zip |
input/atari: Fix atarimouse init
Atarimouse fails to load as a module (with ENODEV), due to a brown paper
bag bug, misinterpreting the semantics of atari_keyb_init().
[geert] Propagate the return value of atari_keyb_init() everywhere
Signed-off-by: Michael Schmitz <schmitz@debian.org>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'drivers/input/keyboard/atakbd.c')
-rw-r--r-- | drivers/input/keyboard/atakbd.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/input/keyboard/atakbd.c b/drivers/input/keyboard/atakbd.c index 1839194ea987..10bcd4ae5402 100644 --- a/drivers/input/keyboard/atakbd.c +++ b/drivers/input/keyboard/atakbd.c @@ -223,8 +223,9 @@ static int __init atakbd_init(void) return -ENODEV; // need to init core driver if not already done so - if (atari_keyb_init()) - return -ENODEV; + error = atari_keyb_init(); + if (error) + return error; atakbd_dev = input_allocate_device(); if (!atakbd_dev) |