From: Dmitry Torokhov Date: Sat, 24 Sep 2005 07:02:29 +0000 (-0500) Subject: [PATCH] Input: check switch bitmap when matching handlers X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ff13f98b97cb6c5a2d201dfa4db0a2fd0b4d9d50;p=mv-sheeva.git [PATCH] Input: check switch bitmap when matching handlers The wwitch bitmap was added to input_device_id structure and we should check it when matching handlers and input devices. Signed-off-by: Dmitry Torokhov Signed-off-by: Linus Torvalds --- diff --git a/drivers/input/input.c b/drivers/input/input.c index 88636a20452..14ae5583e19 100644 --- a/drivers/input/input.c +++ b/drivers/input/input.c @@ -308,6 +308,7 @@ static struct input_device_id *input_match_device(struct input_device_id *id, st MATCH_BIT(ledbit, LED_MAX); MATCH_BIT(sndbit, SND_MAX); MATCH_BIT(ffbit, FF_MAX); + MATCH_BIT(swbit, SW_MAX); return id; }