From: Chen Ni Date: Tue, 15 Apr 2025 08:12:00 +0000 (+0800) Subject: phy: rockchip: samsung-hdptx: Remove unneeded semicolon X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=3b2b414927dcbd866c99ec92e3a214a69fc51c90;p=users%2Fwilly%2Fxarray.git phy: rockchip: samsung-hdptx: Remove unneeded semicolon Remove unnecessary semicolons reported by Coccinelle/coccicheck and the semantic patch at scripts/coccinelle/misc/semicolon.cocci. Signed-off-by: Chen Ni Link: https://lore.kernel.org/r/20250415081200.349939-1-nichen@iscas.ac.cn Signed-off-by: Vinod Koul --- diff --git a/drivers/phy/rockchip/phy-rockchip-samsung-hdptx.c b/drivers/phy/rockchip/phy-rockchip-samsung-hdptx.c index fc289ed8d915..bb49d69a6f17 100644 --- a/drivers/phy/rockchip/phy-rockchip-samsung-hdptx.c +++ b/drivers/phy/rockchip/phy-rockchip-samsung-hdptx.c @@ -1507,7 +1507,7 @@ static int rk_hdptx_phy_verify_hdmi_config(struct rk_hdptx_phy *hdptx, break; default: return -EINVAL; - }; + } return 0; }