pwm: atmel-tcb: Remove unneeded semicolon

Remove unnecessary semicolons reported by Coccinelle/coccicheck and the
semantic patch at scripts/coccinelle/misc/semicolon.cocci.

This was introduced in commit 68637b68af ("pwm: atmel-tcb:
Cache clock rates and mark chip as atomic") in Uwe's adaption of
Sangyun's original patch.

Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Link: https://patch.msgid.link/20260428075329.1234735-1-nichen@iscas.ac.cn
Signed-off-by: Uwe Kleine-König <ukleinek@kernel.org>
This commit is contained in:
Chen Ni
2026-04-28 15:53:29 +08:00
committed by Uwe Kleine-König
parent 254f49634e
commit 495908d2df

View File

@@ -443,7 +443,7 @@ static int atmel_tcb_pwm_probe(struct platform_device *pdev)
err = clk_prepare_enable(tcbpwmc->slow_clk);
if (err)
goto err_disable_clk;;
goto err_disable_clk;
err = clk_rate_exclusive_get(tcbpwmc->clk);
if (err)