提交 6a89bc00 编写于 作者: A Akinobu Mita 提交者: Dmitry Torokhov

Input: lightning - return proper error codes from l4_init()

Signed-off-by: NAkinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: NDmitry Torokhov <dtor@mail.ru>
上级 1447190e
......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册