Commit e945b568 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Linus Torvalds

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: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 038eddd9
...@@ -1880,11 +1880,11 @@ static int __init atari_floppy_init (void) ...@@ -1880,11 +1880,11 @@ static int __init atari_floppy_init (void)
if (!MACH_IS_ATARI) if (!MACH_IS_ATARI)
/* Amiga, Mac, ... don't have Atari-compatible floppy :-) */ /* Amiga, Mac, ... don't have Atari-compatible floppy :-) */
return -ENXIO; return -ENODEV;
if (MACH_IS_HADES) if (MACH_IS_HADES)
/* Hades doesn't have Atari-compatible floppy */ /* Hades doesn't have Atari-compatible floppy */
return -ENXIO; return -ENODEV;
if (register_blkdev(FLOPPY_MAJOR,"fd")) if (register_blkdev(FLOPPY_MAJOR,"fd"))
return -EBUSY; return -EBUSY;
......
...@@ -444,7 +444,7 @@ nvram_init(void) ...@@ -444,7 +444,7 @@ nvram_init(void)
/* First test whether the driver should init at all */ /* First test whether the driver should init at all */
if (!CHECK_DRIVER_INIT()) if (!CHECK_DRIVER_INIT())
return -ENXIO; return -ENODEV;
ret = misc_register(&nvram_dev); ret = misc_register(&nvram_dev);
if (ret) { if (ret) {
......
...@@ -220,7 +220,7 @@ static int __init atakbd_init(void) ...@@ -220,7 +220,7 @@ static int __init atakbd_init(void)
int i, error; int i, error;
if (!MACH_IS_ATARI || !ATARIHW_PRESENT(ST_MFP)) if (!MACH_IS_ATARI || !ATARIHW_PRESENT(ST_MFP))
return -EIO; return -ENODEV;
// need to init core driver if not already done so // need to init core driver if not already done so
if (atari_keyb_init()) if (atari_keyb_init())
......
...@@ -3110,7 +3110,7 @@ int __init atafb_init(void) ...@@ -3110,7 +3110,7 @@ int __init atafb_init(void)
printk("atafb_init: start\n"); printk("atafb_init: start\n");
if (!MACH_IS_ATARI) if (!MACH_IS_ATARI)
return -ENXIO; return -ENODEV;
do { do {
#ifdef ATAFB_EXT #ifdef ATAFB_EXT
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment