diff options
author | Len Brown <len.brown@intel.com> | 2009-12-27 06:04:03 +0300 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-12-30 10:48:52 +0300 |
commit | f27725756be8a2c2dc65eaf70d0b52807aa2f113 (patch) | |
tree | e8875a7dc8821c36759a2e27acc433cecd8b0069 /drivers/platform/x86/hp-wmi.c | |
parent | abb631bfe271a9102fb5b05419272b7aec37a974 (diff) | |
download | linux-f27725756be8a2c2dc65eaf70d0b52807aa2f113.tar.xz |
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) if (wmi_has_guid(HPWMI_EVENT_GUID)) { err = wmi_install_notify_handler(HPWMI_EVENT_GUID, hp_wmi_notify, NULL); - if (!err) + if (ACPI_SUCCESS(err)) hp_wmi_input_setup(); } |