ACPI: kill "unused variable ‘i’" warning
authorLinus Torvalds <torvalds@linux-foundation.org>
Sun, 27 Sep 2009 18:58:36 +0000 (11:58 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sun, 27 Sep 2009 18:58:36 +0000 (11:58 -0700)
commit569ec4cc779c8aae03a4659939d08822c9e4a242
tree00feee49785c9485e25490a81be9da027c3eb1d8
parentf0f37e2f77731b3473fa6bd5ee53255d9a9cdb40
ACPI: kill "unused variable ‘i’" warning

Commit 3d5b6fb47a8e68fa311ca2c3447e7f8a7c3a9cf3 ("ACPI: Kill overly
verbose "power state" log messages") removed the actual use of this
variable, but didn't remove the variable itself, resulting in build
warnings like

  drivers/acpi/processor_idle.c: In function ‘acpi_processor_power_init’:
  drivers/acpi/processor_idle.c:1169: warning: unused variable ‘i’

Just get rid of the now unused variable.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/acpi/processor_idle.c