[PATCH] Fix an OOPS is CinergyT2
Fix an OOPS is CinergyT2 driver when registering IR remote Signed-off-by: Dmitry Torokhov <dtor@mail.ru> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Родитель
9e18fcdd34
Коммит
db93a82fa9
|
@ -772,7 +772,7 @@ static int cinergyt2_register_rc(struct cinergyt2 *cinergyt2)
|
||||||
input_dev->name = DRIVER_NAME " remote control";
|
input_dev->name = DRIVER_NAME " remote control";
|
||||||
input_dev->phys = cinergyt2->phys;
|
input_dev->phys = cinergyt2->phys;
|
||||||
input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP);
|
input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP);
|
||||||
for (i = 0; ARRAY_SIZE(rc_keys); i += 3)
|
for (i = 0; i < ARRAY_SIZE(rc_keys); i += 3)
|
||||||
set_bit(rc_keys[i + 2], input_dev->keybit);
|
set_bit(rc_keys[i + 2], input_dev->keybit);
|
||||||
input_dev->keycodesize = 0;
|
input_dev->keycodesize = 0;
|
||||||
input_dev->keycodemax = 0;
|
input_dev->keycodemax = 0;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче