mfd: core: Use acpi_dev_for_each_child()
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Mon, 13 Jun 2022 18:31:08 +0000 (20:31 +0200)
committerLee Jones <lee.jones@linaro.org>
Mon, 27 Jun 2022 11:22:06 +0000 (12:22 +0100)
commit0c9b9c2ac0df57b6b5949a51c45043b345698428
tree5e72357bca68e299dbd888ecfd38d64435d24cbc
parentf2906aa863381afb0015a9eb7fefad885d4e5a56
mfd: core: Use acpi_dev_for_each_child()

Instead of walking the list of children of an ACPI device directly,
use acpi_dev_for_each_child() to carry out an action for all of
the given ACPI device's children.

This will help to eliminate the children list head from struct
acpi_device as it is redundant and it is used in questionable ways
in some places (in particular, locking is needed for walking the
list pointed to it safely, but it is often missing).

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Link: https://lore.kernel.org/r/2726954.BEx9A2HvPv@kreacher
drivers/mfd/mfd-core.c