From: Markus Elfring <redacted>
Date: Tue, 6 Sep 2016 21:42:34 +0200
The local variable "result" will be set to an appropriate value
a bit later. Thus omit the explicit initialisation at the beginning.
Signed-off-by: Markus Elfring <redacted>
---
drivers/acpi/processor_throttling.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/acpi/processor_throttling.c b/drivers/acpi/processor_throttling.c
index 994f21c..d22bcfc 100644
--- a/drivers/acpi/processor_throttling.c
+++ b/drivers/acpi/processor_throttling.c
@@ -377,7 +377,7 @@ int acpi_processor_tstate_has_changed(struct acpi_processor *pr)
void acpi_processor_reevaluate_tstate(struct acpi_processor *pr,
unsigned long action)
{
- int result = 0;
+ int result;
if (action = CPU_DEAD)
/* When one CPU is offline, the T-state throttling--
2.10.0