From: Krzysztof Halasa Date: Sun, 20 Apr 2008 17:10:56 +0000 (+0200) Subject: WAN: Fix confusing insmod error code for C101 too. X-Git-Tag: v2.6.26-rc1~1067^2~1^2~15 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=d753d82405ac3504ed69fb6be4d219d9702b8d64;p=~shefty%2Frdma-dev.git WAN: Fix confusing insmod error code for C101 too. Signed-off-by: Krzysztof HaƂasa Signed-off-by: Jeff Garzik --- diff --git a/drivers/net/wan/c101.c b/drivers/net/wan/c101.c index c4c8eab8574..c2cc42f723d 100644 --- a/drivers/net/wan/c101.c +++ b/drivers/net/wan/c101.c @@ -402,7 +402,7 @@ static int __init c101_init(void) #ifdef MODULE printk(KERN_INFO "c101: no card initialized\n"); #endif - return -ENOSYS; /* no parameters specified, abort */ + return -EINVAL; /* no parameters specified, abort */ } printk(KERN_INFO "%s\n", version); @@ -420,11 +420,11 @@ static int __init c101_init(void) c101_run(irq, ram); if (*hw == '\x0') - return first_card ? 0 : -ENOSYS; + return first_card ? 0 : -EINVAL; }while(*hw++ == ':'); printk(KERN_ERR "c101: invalid hardware parameters\n"); - return first_card ? 0 : -ENOSYS; + return first_card ? 0 : -EINVAL; }