aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pwm
diff options
context:
space:
mode:
authorWan Jiabing <wanjiabing@vivo.com>2022-04-08 16:30:07 +0800
committerThierry Reding <thierry.reding@gmail.com>2022-05-20 15:57:43 +0200
commit762c4e7fce551fbd617ae79e55fc8d9850627b8f (patch)
treec5f9cc20b12c3f15e60fa878dc3d76fc98513fc4 /drivers/pwm
parentdt-bindings: pwm: Add interrupts property for MediaTek MT8192 (diff)
downloadlinux-dev-762c4e7fce551fbd617ae79e55fc8d9850627b8f.tar.xz
linux-dev-762c4e7fce551fbd617ae79e55fc8d9850627b8f.zip
pwm: sifive: Simplify if-if to if-else
Use if and else instead of if(A) and if (!A). Signed-off-by: Wan Jiabing <wanjiabing@vivo.com> Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
Diffstat (limited to 'drivers/pwm')
-rw-r--r--drivers/pwm/pwm-sifive.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/pwm/pwm-sifive.c b/drivers/pwm/pwm-sifive.c
index 253c4a17d255..e6d05a329002 100644
--- a/drivers/pwm/pwm-sifive.c
+++ b/drivers/pwm/pwm-sifive.c
@@ -138,10 +138,9 @@ static int pwm_sifive_enable(struct pwm_chip *chip, bool enable)
dev_err(ddata->chip.dev, "Enable clk failed\n");
return ret;
}
- }
-
- if (!enable)
+ } else {
clk_disable(ddata->clk);
+ }
return 0;
}