drm/msm: Remove unneeded semicolon
authorYang Li <yang.lee@linux.alibaba.com>
Wed, 18 Sep 2024 02:33:57 +0000 (10:33 +0800)
committerDmitry Baryshkov <dmitry.baryshkov@linaro.org>
Mon, 21 Oct 2024 11:09:05 +0000 (14:09 +0300)
./drivers/gpu/drm/msm/hdmi/hdmi_phy_8998.c:282:2-3: Unneeded semicolon

This patch removes an unneeded semicolon after a switch statement in the
pll_get_post_div function. Adding a semicolon after a switch statement is
unnecessary and can lead to confusion in the code structure.

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=9852
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Patchwork: https://patchwork.freedesktop.org/patch/614767/
Link: https://lore.kernel.org/r/20240918023357.59399-1-yang.lee@linux.alibaba.com
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
drivers/gpu/drm/msm/hdmi/hdmi_phy_8998.c

index e6ffaf92d26d3230bb1d90064f1b4f1a3b426170..e595ad47a2852017a656730d1efd8db5d6f38e94 100644 (file)
@@ -270,7 +270,7 @@ find_optimal_index:
        case 25:
                found_hsclk_divsel = 14;
                break;
-       };
+       }
 
        pd->vco_freq = found_vco_freq;
        pd->tx_band_sel = found_tx_band_sel;