Commit 619400da authored by Zhang Rui's avatar Zhang Rui Committed by Rafael J. Wysocki

toshiba_acpi: convert acpi_evaluate_object() to acpi_execute_simple_method()

acpi_execute_simple_method() is a new ACPI API introduced to invoke
an ACPI control method that has single integer parameter and no return value.

Convert acpi_evaluate_object() to acpi_execute_simple_method()
in drivers/platform/x86/toshiba_acpi.c
Signed-off-by: default avatarZhang Rui <rui.zhang@intel.com>
CC: Matthew Garrett <matthew.garrett@nebula.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent a7f6451f
...@@ -191,16 +191,9 @@ static __inline__ void _set_bit(u32 * word, u32 mask, int value) ...@@ -191,16 +191,9 @@ static __inline__ void _set_bit(u32 * word, u32 mask, int value)
static int write_acpi_int(const char *methodName, int val) static int write_acpi_int(const char *methodName, int val)
{ {
struct acpi_object_list params;
union acpi_object in_objs[1];
acpi_status status; acpi_status status;
params.count = ARRAY_SIZE(in_objs); status = acpi_execute_simple_method(NULL, (char *)methodName, val);
params.pointer = in_objs;
in_objs[0].type = ACPI_TYPE_INTEGER;
in_objs[0].integer.value = val;
status = acpi_evaluate_object(NULL, (char *)methodName, &params, NULL);
return (status == AE_OK) ? 0 : -EIO; return (status == AE_OK) ? 0 : -EIO;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment