phy: stm32: Remove unneeded semicolon
authorYang Li <yang.lee@linux.alibaba.com>
Thu, 17 Oct 2024 04:06:57 +0000 (12:06 +0800)
committerVinod Koul <vkoul@kernel.org>
Thu, 17 Oct 2024 12:54:46 +0000 (18:24 +0530)
This patch removes an unneeded semicolon after a switch statement.

./drivers/phy/st/phy-stm32-combophy.c:226:2-3: Unneeded semicolon

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=11403
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Link: https://lore.kernel.org/r/20241017040657.33992-1-yang.lee@linux.alibaba.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/phy/st/phy-stm32-combophy.c

index e1e7083..765bb34 100644 (file)
@@ -223,7 +223,7 @@ static int stm32_combophy_pll_init(struct stm32_combophy *combophy)
        default:
                dev_err(combophy->dev, "Invalid rate 0x%x\n", clk_rate);
                return -EINVAL;
-       };
+       }
 
        cr1_mask |= SYSCFG_COMBOPHY_CR1_REFCLKDIV2;
        cr1_val |= REFCLDIV_0;