eeepc-wmi: fix confusion between ctrl_param and retval

Signed-off-by: Corentin Chary <corentincj@iksaif.net>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
This commit is contained in:
Corentin Chary 2010-11-29 08:14:10 +01:00 committed by Matthew Garrett
parent 8c1b2d83e8
commit 2a3f0064f2

View file

@ -164,7 +164,7 @@ static void eeepc_wmi_input_exit(struct eeepc_wmi *eeepc)
eeepc->inputdev = NULL; eeepc->inputdev = NULL;
} }
static acpi_status eeepc_wmi_get_devstate(u32 dev_id, u32 *ctrl_param) static acpi_status eeepc_wmi_get_devstate(u32 dev_id, u32 *retval)
{ {
struct acpi_buffer input = { (acpi_size)sizeof(u32), &dev_id }; struct acpi_buffer input = { (acpi_size)sizeof(u32), &dev_id };
struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL }; struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
@ -184,8 +184,8 @@ static acpi_status eeepc_wmi_get_devstate(u32 dev_id, u32 *ctrl_param)
else else
tmp = 0; tmp = 0;
if (ctrl_param) if (retval)
*ctrl_param = tmp; *retval = tmp;
kfree(obj); kfree(obj);
@ -266,14 +266,14 @@ static void tpd_led_set(struct led_classdev *led_cdev,
static int read_tpd_state(struct eeepc_wmi *eeepc) static int read_tpd_state(struct eeepc_wmi *eeepc)
{ {
static u32 ctrl_param; static u32 retval;
acpi_status status; acpi_status status;
status = eeepc_wmi_get_devstate(EEEPC_WMI_DEVID_TPDLED, &ctrl_param); status = eeepc_wmi_get_devstate(EEEPC_WMI_DEVID_TPDLED, &retval);
if (ACPI_FAILURE(status)) if (ACPI_FAILURE(status))
return -1; return -1;
else if (!ctrl_param || ctrl_param == 0x00060000) else if (!retval || retval == 0x00060000)
/* /*
* if touchpad led is present, DSTS will set some bits, * if touchpad led is present, DSTS will set some bits,
* usually 0x00020000. * usually 0x00020000.
@ -282,7 +282,7 @@ static int read_tpd_state(struct eeepc_wmi *eeepc)
return -ENODEV; return -ENODEV;
else else
/* Status is stored in the first bit */ /* Status is stored in the first bit */
return ctrl_param & 0x1; return retval & 0x1;
} }
static enum led_brightness tpd_led_get(struct led_classdev *led_cdev) static enum led_brightness tpd_led_get(struct led_classdev *led_cdev)
@ -343,15 +343,15 @@ static int eeepc_rfkill_set(void *data, bool blocked)
static void eeepc_rfkill_query(struct rfkill *rfkill, void *data) static void eeepc_rfkill_query(struct rfkill *rfkill, void *data)
{ {
int dev_id = (unsigned long)data; int dev_id = (unsigned long)data;
u32 ctrl_param; u32 retval;
acpi_status status; acpi_status status;
status = eeepc_wmi_get_devstate(dev_id, &ctrl_param); status = eeepc_wmi_get_devstate(dev_id, &retval);
if (ACPI_FAILURE(status)) if (ACPI_FAILURE(status))
return ; return ;
rfkill_set_sw_state(rfkill, !(ctrl_param & 0x1)); rfkill_set_sw_state(rfkill, !(retval & 0x1));
} }
static const struct rfkill_ops eeepc_rfkill_ops = { static const struct rfkill_ops eeepc_rfkill_ops = {
@ -365,10 +365,10 @@ static int eeepc_new_rfkill(struct eeepc_wmi *eeepc,
enum rfkill_type type, int dev_id) enum rfkill_type type, int dev_id)
{ {
int result; int result;
u32 ctrl_param; u32 retval;
acpi_status status; acpi_status status;
status = eeepc_wmi_get_devstate(dev_id, &ctrl_param); status = eeepc_wmi_get_devstate(dev_id, &retval);
if (ACPI_FAILURE(status)) if (ACPI_FAILURE(status))
return -1; return -1;
@ -379,7 +379,7 @@ static int eeepc_new_rfkill(struct eeepc_wmi *eeepc,
* 0x00020000 - 0100000000000000000 - device supported * 0x00020000 - 0100000000000000000 - device supported
* 0x00010000 - 0010000000000000000 - not supported / special mode ? * 0x00010000 - 0010000000000000000 - not supported / special mode ?
*/ */
if (!ctrl_param || ctrl_param == 0x00060000) if (!retval || retval == 0x00060000)
return -ENODEV; return -ENODEV;
*rfkill = rfkill_alloc(name, &eeepc->platform_device->dev, type, *rfkill = rfkill_alloc(name, &eeepc->platform_device->dev, type,
@ -388,7 +388,7 @@ static int eeepc_new_rfkill(struct eeepc_wmi *eeepc,
if (!*rfkill) if (!*rfkill)
return -EINVAL; return -EINVAL;
rfkill_init_sw_state(*rfkill, !(ctrl_param & 0x1)); rfkill_init_sw_state(*rfkill, !(retval & 0x1));
result = rfkill_register(*rfkill); result = rfkill_register(*rfkill);
if (result) { if (result) {
rfkill_destroy(*rfkill); rfkill_destroy(*rfkill);
@ -457,15 +457,15 @@ exit:
*/ */
static int read_brightness(struct backlight_device *bd) static int read_brightness(struct backlight_device *bd)
{ {
static u32 ctrl_param; static u32 retval;
acpi_status status; acpi_status status;
status = eeepc_wmi_get_devstate(EEEPC_WMI_DEVID_BACKLIGHT, &ctrl_param); status = eeepc_wmi_get_devstate(EEEPC_WMI_DEVID_BACKLIGHT, &retval);
if (ACPI_FAILURE(status)) if (ACPI_FAILURE(status))
return -1; return -1;
else else
return ctrl_param & 0xFF; return retval & 0xFF;
} }
static int update_bl_status(struct backlight_device *bd) static int update_bl_status(struct backlight_device *bd)