Message ID | 9c8ff2b103c3ba7b0d27bdc8248b05e3b1dc9551.1741776430.git.geert+renesas@glider.be |
---|---|
State | New |
Headers | show |
Series | PM: core: Fix indentation in dpm_wait_for_children() | expand |
On Wed, Mar 12, 2025 at 11:47 AM Geert Uytterhoeven <geert+renesas@glider.be> wrote: > > The body of dpm_wait_for_children() is indented by 7 spaces instead of a > single TAB. > > Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> > --- > drivers/base/power/main.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/base/power/main.c b/drivers/base/power/main.c > index e4103d29a21a6b2f..2fc37658b0b582e2 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) > -- Applied as 6.15 material, thanks!
diff --git a/drivers/base/power/main.c b/drivers/base/power/main.c index e4103d29a21a6b2f..2fc37658b0b582e2 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)
The body of dpm_wait_for_children() is indented by 7 spaces instead of a single TAB. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> --- drivers/base/power/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)