diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2008-05-18 20:47:18 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-05-18 13:28:50 -0700 |
commit | fd5b462f0b3ae641e39966d1c6cd0dd66100cda5 (patch) | |
tree | c5334016f71fb0e0807147b73e12e565baf3cb73 /drivers/video/hpfb.c | |
parent | eb98630ba02f6a23a2d202be082757a9e9940b2b (diff) | |
download | linux-3.10-fd5b462f0b3ae641e39966d1c6cd0dd66100cda5.tar.gz linux-3.10-fd5b462f0b3ae641e39966d1c6cd0dd66100cda5.tar.bz2 linux-3.10-fd5b462f0b3ae641e39966d1c6cd0dd66100cda5.zip |
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/hpfb.c')
-rw-r--r-- | drivers/video/hpfb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/hpfb.c b/drivers/video/hpfb.c index 2eb4fb15908..b8ebff1e849 100644 --- a/drivers/video/hpfb.c +++ b/drivers/video/hpfb.c @@ -382,7 +382,7 @@ int __init hpfb_init(void) #define INTFBPADDR 0x560000 if (!MACH_IS_HP300) - return -ENXIO; + return -ENODEV; if (fb_get_options("hpfb", NULL)) return -ENODEV; |