diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2008-07-17 21:16:10 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-20 17:24:38 -0700 |
commit | e945b568e28b42de893ef24989372f0219501d32 (patch) | |
tree | b14af0806136067685a96832abcf05b46f99980b /drivers/video/atafb.c | |
parent | 038eddd9acf34e8202b31af3ee9eb48179114323 (diff) | |
download | op-kernel-dev-e945b568e28b42de893ef24989372f0219501d32.zip op-kernel-dev-e945b568e28b42de893ef24989372f0219501d32.tar.gz |
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>
Diffstat (limited to 'drivers/video/atafb.c')
-rw-r--r-- | drivers/video/atafb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/atafb.c b/drivers/video/atafb.c index dff3547..c860573 100644 --- a/drivers/video/atafb.c +++ b/drivers/video/atafb.c @@ -3110,7 +3110,7 @@ int __init atafb_init(void) printk("atafb_init: start\n"); if (!MACH_IS_ATARI) - return -ENXIO; + return -ENODEV; do { #ifdef ATAFB_EXT |