Skip to content

Commit a8f9de9

Browse files
Chen Nivinodkoul
authored andcommitted
phy: rockchip: naneng-combphy: Convert comma to semicolon
Replace comma between expressions with semicolons. Using a ',' in place of a ';' can have unintended side effects. Although that is not the case here, it is seems best to use ';' unless ',' is intended. Found by inspection. No functional change intended. Compile tested only. Signed-off-by: Chen Ni <nichen@iscas.ac.cn> Link: https://lore.kernel.org/r/20250814013943.2905307-1-nichen@iscas.ac.cn Signed-off-by: Vinod Koul <vkoul@kernel.org>
1 parent e1e1e77 commit a8f9de9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/phy/rockchip/phy-rockchip-naneng-combphy.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1252,7 +1252,7 @@ static int rk3588_combphy_cfg(struct rockchip_combphy_priv *priv)
12521252
writel(val, priv->mmio + RK3568_PHYREG15);
12531253

12541254
/* Set PLL KVCO fine tuning signals. */
1255-
val = RK3568_PHYREG33_PLL_KVCO_VALUE << RK3568_PHYREG33_PLL_KVCO_SHIFT,
1255+
val = RK3568_PHYREG33_PLL_KVCO_VALUE << RK3568_PHYREG33_PLL_KVCO_SHIFT;
12561256
rockchip_combphy_updatel(priv, RK3568_PHYREG33_PLL_KVCO_MASK, val, RK3568_PHYREG33);
12571257

12581258
/* Enable controlling random jitter. */

0 commit comments

Comments
 (0)