m68k: Return -ENODEV if no device is found

According to the tests in do_initcalls(), the proper error code in case no
device is found is -ENODEV, not -ENXIO or -EIO.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Geert Uytterhoeven
2008-05-18 20:47:18 +02:00
committed by Linus Torvalds
parent eb98630ba0
commit fd5b462f0b
5 changed files with 8 additions and 8 deletions

View File

@@ -156,7 +156,7 @@ static int __init q40kbd_init(void)
int error;
if (!MACH_IS_Q40)
return -EIO;
return -ENODEV;
error = platform_driver_register(&q40kbd_driver);
if (error)