Commit ed2fa4dd authored by Richard Purdie's avatar Richard Purdie Committed by Dmitry Torokhov

Input: pass EV_PWR events to event handlers

input_handle_event() used to pass EV_PWR events to event handlers
but no longer does so in 2.6.23. Modules to trigger power management
events based on input power events exist but rely on the EV_PWR events
being passed to the input event handlers.
Signed-off-by: default avatarRichard Purdie <rpurdie@rpsys.net>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent 9fe4f2aa
...@@ -235,6 +235,10 @@ static void input_handle_event(struct input_dev *dev, ...@@ -235,6 +235,10 @@ static void input_handle_event(struct input_dev *dev,
if (value >= 0) if (value >= 0)
disposition = INPUT_PASS_TO_ALL; disposition = INPUT_PASS_TO_ALL;
break; break;
case EV_PWR:
disposition = INPUT_PASS_TO_ALL;
break;
} }
if (type != EV_SYN) if (type != EV_SYN)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment