diff options
author | Jiang Liu <jiang.liu@linux.intel.com> | 2014-02-19 01:02:18 -0500 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-02-20 18:27:47 -0500 |
commit | 4a6172a4e96f81200de9701c128857b162d1cc6f (patch) | |
tree | 78c19f6d6e028340f064c1b8449de434ea17daec | |
parent | 772c53990fc29a34aec539abc6b2a1edbab8b2b5 (diff) |
ACPI / processor: use acpi_evaluate_ost() to replace open-coded version
Use public function acpi_evaluate_ost() to replace open-coded
version of evaluating ACPI _OST method.
Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r-- | drivers/acpi/processor_perflib.c | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/drivers/acpi/processor_perflib.c b/drivers/acpi/processor_perflib.c index ff90054f04fd..cfc8aba72f86 100644 --- a/drivers/acpi/processor_perflib.c +++ b/drivers/acpi/processor_perflib.c | |||
@@ -156,17 +156,9 @@ static int acpi_processor_get_platform_limit(struct acpi_processor *pr) | |||
156 | */ | 156 | */ |
157 | static void acpi_processor_ppc_ost(acpi_handle handle, int status) | 157 | static void acpi_processor_ppc_ost(acpi_handle handle, int status) |
158 | { | 158 | { |
159 | union acpi_object params[2] = { | 159 | if (acpi_has_method(handle, "_OST")) |
160 | {.type = ACPI_TYPE_INTEGER,}, | 160 | acpi_evaluate_ost(handle, ACPI_PROCESSOR_NOTIFY_PERFORMANCE, |
161 | {.type = ACPI_TYPE_INTEGER,}, | 161 | status, NULL); |
162 | }; | ||
163 | struct acpi_object_list arg_list = {2, params}; | ||
164 | |||
165 | if (acpi_has_method(handle, "_OST")) { | ||
166 | params[0].integer.value = ACPI_PROCESSOR_NOTIFY_PERFORMANCE; | ||
167 | params[1].integer.value = status; | ||
168 | acpi_evaluate_object(handle, "_OST", &arg_list, NULL); | ||
169 | } | ||
170 | } | 162 | } |
171 | 163 | ||
172 | int acpi_processor_ppc_has_changed(struct acpi_processor *pr, int event_flag) | 164 | int acpi_processor_ppc_has_changed(struct acpi_processor *pr, int event_flag) |