ACPI: IPMI: replace usage of found with dedicated list iterator variable
authorJakob Koschel <jakobkoschel@gmail.com>
Thu, 24 Mar 2022 07:04:41 +0000 (08:04 +0100)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Fri, 25 Mar 2022 17:01:40 +0000 (18:01 +0100)
commit26de0ab9841a1610a477d9b07c024b9bb6d39f98
tree9b7483d48a7b7366a360d851f5d21135870ee235
parent242ba6656d604aa8dc87451fc08143cb28d5a587
ACPI: IPMI: replace usage of found with dedicated list iterator variable

To move the list iterator variable into the list_for_each_entry_*()
macro in the future it should be avoided to use the list iterator
variable after the loop body.

To *never* use the list iterator variable after the loop it was
concluded to use a separate iterator variable instead of a
found boolean [1].

This removes the need to use a found variable and simply checking if
the variable was set, can determine if the break/goto was hit.

Link: https://lore.kernel.org/all/CAHk-=wgRr_D8CB-D9Kg-c=EHreAsk5SqXPwr9Y7k9sA6cWXJ6w@mail.gmail.com/
Signed-off-by: Jakob Koschel <jakobkoschel@gmail.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/acpi/acpi_ipmi.c