2005-09-24 07:02:38

by Dmitry Torokhov

[permalink] [raw]
Subject: [PATCH] Input: check switch bitmap when matching handlers

Input: check switch bitmap when matching handlers

Switch bitmap was added to input_device_id structure so we should
check it when matching handlers and input devices.

Signed-off-by: Dmitry Torokhov <[email protected]>
---

drivers/input/input.c | 1 +
1 files changed, 1 insertion(+)

Index: work/drivers/input/input.c
===================================================================
--- work.orig/drivers/input/input.c
+++ work/drivers/input/input.c
@@ -309,6 +309,7 @@ static struct input_device_id *input_mat
MATCH_BIT(ledbit, LED_MAX);
MATCH_BIT(sndbit, SND_MAX);
MATCH_BIT(ffbit, FF_MAX);
+ MATCH_BIT(swbit, SW_MAX);

return id;
}