From: Geert Uytterhoeven Date: Wed, 12 Mar 2025 10:47:19 +0000 (+0100) Subject: PM: sleep: core: Fix indentation in dpm_wait_for_children() X-Git-Tag: v6.15-rc1~191^2~1^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=956af869a2b7a1ab1f67bf8a74c51897f6f6715d;p=thirdparty%2Flinux.git PM: sleep: core: Fix indentation in dpm_wait_for_children() The body of dpm_wait_for_children() is indented by 7 spaces instead of a single TAB. Signed-off-by: Geert Uytterhoeven Link: https://patch.msgid.link/9c8ff2b103c3ba7b0d27bdc8248b05e3b1dc9551.1741776430.git.geert+renesas@glider.be Signed-off-by: Rafael J. Wysocki --- diff --git a/drivers/base/power/main.c b/drivers/base/power/main.c index d240dc352b1f9..1b0eb83f70615 100644 --- a/drivers/base/power/main.c +++ b/drivers/base/power/main.c @@ -249,7 +249,7 @@ static int dpm_wait_fn(struct device *dev, void *async_ptr) static void dpm_wait_for_children(struct device *dev, bool async) { - device_for_each_child(dev, &async, dpm_wait_fn); + device_for_each_child(dev, &async, dpm_wait_fn); } static void dpm_wait_for_suppliers(struct device *dev, bool async)