From: Geert Uytterhoeven Date: Tue, 13 Oct 2020 14:14:59 +0000 (+0200) Subject: PM: domains: Add curly braces to delimit comment + statement block X-Git-Tag: v5.10-rc1~34^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=505a70b783debaa84c7ebafa44a69a9401db4499;p=thirdparty%2Fkernel%2Flinux.git PM: domains: Add curly braces to delimit comment + statement block There is not strict need to group a comment and a single statement in an if block, as comments are stripped by the pre-processor. However, adding curly braces does make the code easier to read, and may avoid mistakes when changing the code later. Signed-off-by: Geert Uytterhoeven Acked-by: Ulf Hansson Signed-off-by: Rafael J. Wysocki --- diff --git a/drivers/base/power/domain.c b/drivers/base/power/domain.c index c2a8821bdb26a..bc42439439403 100644 --- a/drivers/base/power/domain.c +++ b/drivers/base/power/domain.c @@ -1311,13 +1311,14 @@ static int genpd_restore_noirq(struct device *dev) * first time for the given domain in the present cycle. */ genpd_lock(genpd); - if (genpd->suspended_count++ == 0) + if (genpd->suspended_count++ == 0) { /* * The boot kernel might put the domain into arbitrary state, * so make it appear as powered off to genpd_sync_power_on(), * so that it tries to power it on in case it was really off. */ genpd->status = GENPD_STATE_OFF; + } genpd_sync_power_on(genpd, true, 0); genpd_unlock(genpd);