diff options
author | Len Brown | 2008-02-02 09:56:18 +0100 |
---|---|---|
committer | Len Brown | 2008-02-02 09:56:18 +0100 |
commit | 3391a76f2bbb74e42b9ba44c05a7366ffd388753 (patch) | |
tree | df70e40038602226bc7e020d666f3a415b4d54f2 | |
parent | ACPI: Update the t-state for every affected cpu when t-state is changed (diff) | |
download | kernel-qcow2-linux-3391a76f2bbb74e42b9ba44c05a7366ffd388753.tar.gz kernel-qcow2-linux-3391a76f2bbb74e42b9ba44c05a7366ffd388753.tar.xz kernel-qcow2-linux-3391a76f2bbb74e42b9ba44c05a7366ffd388753.zip |
ACPI: throttling: fix build warning
Signed-off-by: Len Brown <len.brown@intel.com>
-rw-r--r-- | drivers/acpi/processor_throttling.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/processor_throttling.c b/drivers/acpi/processor_throttling.c index 86c790e9f4fc..1b8e592a8241 100644 --- a/drivers/acpi/processor_throttling.c +++ b/drivers/acpi/processor_throttling.c @@ -987,7 +987,7 @@ static int acpi_processor_set_throttling_ptc(struct acpi_processor *pr, int acpi_processor_set_throttling(struct acpi_processor *pr, int state) { cpumask_t saved_mask; - int ret; + int ret = 0; unsigned int i; struct acpi_processor *match_pr; struct acpi_processor_throttling *p_throttling; |