diff options
author | Len Brown <len.brown@intel.com> | 2009-08-02 11:33:01 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-08-02 11:33:01 -0400 |
commit | 437f8c8ab99e7b6eed8e0d6d9cf46085c8de2e36 (patch) | |
tree | 7670bf6f2afc441974d37951afdc5c598705afef /drivers/platform | |
parent | b8a848ed7ffda36ed069f63de085a9411d2aa39f (diff) | |
parent | daed953721850381673687c59f3a0df553eb6626 (diff) | |
download | op-kernel-dev-437f8c8ab99e7b6eed8e0d6d9cf46085c8de2e36.zip op-kernel-dev-437f8c8ab99e7b6eed8e0d6d9cf46085c8de2e36.tar.gz |
Merge branch 'bugzilla-13865' into release
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/hp-wmi.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/drivers/platform/x86/hp-wmi.c b/drivers/platform/x86/hp-wmi.c index ca50856..a2ad53e 100644 --- a/drivers/platform/x86/hp-wmi.c +++ b/drivers/platform/x86/hp-wmi.c @@ -520,11 +520,13 @@ static int hp_wmi_resume_handler(struct platform_device *device) * the input layer will only actually pass it on if the state * changed. */ - - input_report_switch(hp_wmi_input_dev, SW_DOCK, hp_wmi_dock_state()); - input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE, - hp_wmi_tablet_state()); - input_sync(hp_wmi_input_dev); + if (hp_wmi_input_dev) { + input_report_switch(hp_wmi_input_dev, SW_DOCK, + hp_wmi_dock_state()); + input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE, + hp_wmi_tablet_state()); + input_sync(hp_wmi_input_dev); + } return 0; } |