aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/platform
diff options
context:
space:
mode:
authorAlmer S. Tigelaar <almer@gnome.org>2009-04-12 11:26:28 +0000
committerLen Brown <len.brown@intel.com>2009-04-23 23:56:53 -0400
commita83021a229016f93b4e532d9cef21b01be5a8bb7 (patch)
tree3fc569bf7d5a9b0bb6bbc36f49a7e004aa8e0a9b /drivers/platform
parentsony-laptop: SNC 127 Initialization Fix (diff)
downloadlinux-dev-a83021a229016f93b4e532d9cef21b01be5a8bb7.tar.xz
linux-dev-a83021a229016f93b4e532d9cef21b01be5a8bb7.zip
sony-laptop: SNC input event 38 fix
Fixes the "unknown input event 38" messages. ANYBUTTON_RELEASED is now treated the same way as FN_KEY_RELEASED. Signed-off-by: Almer S. Tigelaar <almer@gnome.org> Signed-off-by: Mattia Dongili <malattia@linux.it> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r--drivers/platform/x86/sony-laptop.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/platform/x86/sony-laptop.c b/drivers/platform/x86/sony-laptop.c
index 4ff41a7a97d7..3541ca097d09 100644
--- a/drivers/platform/x86/sony-laptop.c
+++ b/drivers/platform/x86/sony-laptop.c
@@ -317,7 +317,8 @@ static void sony_laptop_report_input_event(u8 event)
struct input_dev *key_dev = sony_laptop_input.key_dev;
struct sony_laptop_keypress kp = { NULL };
- if (event == SONYPI_EVENT_FNKEY_RELEASED) {
+ if (event == SONYPI_EVENT_FNKEY_RELEASED ||
+ event == SONYPI_EVENT_ANYBUTTON_RELEASED) {
/* Nothing, not all VAIOs generate this event */
return;
}