thermal: rcar_thermal: Add missing braces to conditional statement
authorGeert Uytterhoeven <geert+renesas@glider.be>
Wed, 19 Aug 2020 09:27:16 +0000 (11:27 +0200)
committerDaniel Lezcano <daniel.lezcano@linaro.org>
Mon, 12 Oct 2020 10:08:35 +0000 (12:08 +0200)
According to Documentation/process/coding-style.rst, if one branch of a
conditional statement needs braces, both branches should use braces.

Fixes: bbcf90c0646ac797 ("thermal: Explicitly enable non-changing thermal zone devices")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Link: https://lore.kernel.org/r/20200819092716.3191-1-geert+renesas@glider.be
drivers/thermal/rcar_thermal.c

index 787710bb88fee890cc6afc419e5521e7d9092bfa..5c2a13bf249ccb87dada9012919a84c4bd081475 100644 (file)
@@ -546,11 +546,11 @@ static int rcar_thermal_probe(struct platform_device *pdev)
                if (ret < 0)
                        goto error_unregister;
 
-               if (chip->use_of_thermal)
+               if (chip->use_of_thermal) {
                        priv->zone = devm_thermal_zone_of_sensor_register(
                                                dev, i, priv,
                                                &rcar_thermal_zone_of_ops);
-               else {
+               else {
                        priv->zone = thermal_zone_device_register(
                                                "rcar_thermal",
                                                1, 0, priv,