diff options
author | Len Brown <len.brown@intel.com> | 2009-12-26 22:04:03 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-12-30 02:48:52 -0500 |
commit | f27725756be8a2c2dc65eaf70d0b52807aa2f113 (patch) | |
tree | e8875a7dc8821c36759a2e27acc433cecd8b0069 /drivers/platform/x86/hp-wmi.c | |
parent | abb631bfe271a9102fb5b05419272b7aec37a974 (diff) |
ACPI: hp-wmi, msi-wmi: clarify that wmi_install_notify_handler() returns an acpi_status
Emphasize that that wmi_install_notify_handler() returns an acpi_status
rather than -errno by by testing ACPI_SUCCESS(), ACPI_FAILURE().
No functional change in this patch, but this confusion caused a bug in dell-wmi.
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/platform/x86/hp-wmi.c')
-rw-r--r-- | drivers/platform/x86/hp-wmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/hp-wmi.c b/drivers/platform/x86/hp-wmi.c index 8781d8fa7a57..18bf74136d24 100644 --- a/drivers/platform/x86/hp-wmi.c +++ b/drivers/platform/x86/hp-wmi.c | |||
@@ -581,7 +581,7 @@ static int __init hp_wmi_init(void) | |||
581 | if (wmi_has_guid(HPWMI_EVENT_GUID)) { | 581 | if (wmi_has_guid(HPWMI_EVENT_GUID)) { |
582 | err = wmi_install_notify_handler(HPWMI_EVENT_GUID, | 582 | err = wmi_install_notify_handler(HPWMI_EVENT_GUID, |
583 | hp_wmi_notify, NULL); | 583 | hp_wmi_notify, NULL); |
584 | if (!err) | 584 | if (ACPI_SUCCESS(err)) |
585 | hp_wmi_input_setup(); | 585 | hp_wmi_input_setup(); |
586 | } | 586 | } |
587 | 587 | ||