summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorGuillem Jover <guillem.jover@nokia.com>2008-10-28 01:34:27 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2008-11-10 11:17:55 -0800
commita5069282922b9ce9b1db1b3a196ef6df958d95d5 (patch)
tree9ab72e920b49f44396128b5bc308d908eb1c40f3 /drivers
parent8f9f0e59f77df62a7f7c58adee08831e78e506aa (diff)
ACPI: Always report a sync event after a lid state change
upstream commit df316e939100e789b3c5d4d102619ccf5834bd00 Currently not always an EV_SYN event is reported to userland after the EV_SW SW_LID event has been sent. This is easy to verify by using “input-events” from input-utils and just closing and opening the lid. Signed-off-by: Guillem Jover <guillem.jover@nokia.com> Acked-by: Dmitry Torokhov <dtor@mail.ru> Signed-off-by: Len Brown <len.brown@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/acpi/button.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/acpi/button.c b/drivers/acpi/button.c
index 1dfec413588c..59352d9dfb3c 100644
--- a/drivers/acpi/button.c
+++ b/drivers/acpi/button.c
@@ -262,6 +262,7 @@ static int acpi_lid_send_state(struct acpi_button *button)
return -ENODEV;
/* input layer checks if event is redundant */
input_report_switch(button->input, SW_LID, !state);
+ input_sync(button->input);
return 0;
}
@@ -285,8 +286,8 @@ static void acpi_button_notify(acpi_handle handle, u32 event, void *data)
input_report_key(input, keycode, 1);
input_sync(input);
input_report_key(input, keycode, 0);
+ input_sync(input);
}
- input_sync(input);
acpi_bus_generate_proc_event(button->device, event,
++button->pushed);