eeepc-wmi: return proper error code in eeepc_rfkill_set()

Signed-off-by: Corentin Chary <corentincj@iksaif.net>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
This commit is contained in:
Corentin Chary 2011-02-06 13:28:30 +01:00 committed by Matthew Garrett
parent 279f8f9549
commit 7898cf1a36

View file

@ -588,8 +588,14 @@ static int eeepc_rfkill_set(void *data, bool blocked)
{
int dev_id = (unsigned long)data;
u32 ctrl_param = !blocked;
acpi_status status;
return eeepc_wmi_set_devstate(dev_id, ctrl_param, NULL);
status = eeepc_wmi_set_devstate(dev_id, ctrl_param, NULL);
if (ACPI_FAILURE(status))
return -EIO;
return 0;
}
static void eeepc_rfkill_query(struct rfkill *rfkill, void *data)