[PATCH] lightning: return proper return code

From: Akinobu Mita
Date: Sat Oct 28 2006 - 14:42:02 EST


This patch makes module init return proper value instead of -1 (-EPERM).

Cc: Dmitry Torokhov <dmitry.torokhov@xxxxxxxxx>
Signed-off-by: Akinobu Mita <akinobu.mita@xxxxxxxxx>

drivers/input/gameport/lightning.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Index: work-fault-inject/drivers/input/gameport/lightning.c
===================================================================
--- work-fault-inject.orig/drivers/input/gameport/lightning.c
+++ work-fault-inject/drivers/input/gameport/lightning.c
@@ -309,7 +309,7 @@ static int __init l4_init(void)
int i, cards = 0;

if (!request_region(L4_PORT, 1, "lightning"))
- return -1;
+ return -EBUSY;

for (i = 0; i < 2; i++)
if (l4_add_card(i) == 0)
@@ -319,7 +319,7 @@ static int __init l4_init(void)

if (!cards) {
release_region(L4_PORT, 1);
- return -1;
+ return -ENODEV;
}

return 0;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/