]> git.baikalelectronics.ru Git - kernel.git/commit
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)
commit65a9caecf972ac3f1bc3278de327b79509e21b2e
tree9b7483d48a7b7366a360d851f5d21135870ee235
parentc07dc9c20470827fb95d17299ab833c23ed3c810
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