dect
/
linux-2.6
Archived
13
0
Fork 0

[PATCH] hdaps: use ENODEV

Use ENODEV when the hdaps hardware isn't there, not ENXIO.

Cc: Jean Delvare <khali@linux-fr.org>
Cc: Robert Love <rml@novell.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Andrew Morton 2006-04-10 22:54:32 -07:00 committed by Linus Torvalds
parent 4791c03d2c
commit b3f28a9a26
1 changed files with 1 additions and 1 deletions

View File

@ -544,7 +544,7 @@ static int __init hdaps_init(void)
if (!dmi_check_system(hdaps_whitelist)) {
printk(KERN_WARNING "hdaps: supported laptop not found!\n");
ret = -ENXIO;
ret = -ENODEV;
goto out;
}