Skip to content

Commit

Permalink
ACPI: hp-wmi, msi-wmi: clarify that wmi_install_notify_handler() retu…
Browse files Browse the repository at this point in the history
…rns 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>
  • Loading branch information
lenb committed Dec 30, 2009
1 parent abb631b commit f277257
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/platform/x86/hp-wmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

Expand Down
2 changes: 1 addition & 1 deletion drivers/platform/x86/msi-wmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ static int __init msi_wmi_init(void)
}
err = wmi_install_notify_handler(MSIWMI_EVENT_GUID,
msi_wmi_notify, NULL);
if (err)
if (ACPI_FAILURE(err))
return -EINVAL;

err = msi_wmi_input_setup();
Expand Down

0 comments on commit f277257

Please sign in to comment.