From 2089f086303b773e181567fd8d5df3038bd85937 Mon Sep 17 00:00:00 2001 From: Chen Ni Date: Fri, 7 Nov 2025 16:51:09 +0800 Subject: [PATCH] regulator: mt6363: 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://patch.msgid.link/20251107085109.2316999-1-nichen@iscas.ac.cn Signed-off-by: Mark Brown --- drivers/regulator/mt6363-regulator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/regulator/mt6363-regulator.c b/drivers/regulator/mt6363-regulator.c index 94ac955afa458..e0fbf92e76851 100644 --- a/drivers/regulator/mt6363-regulator.c +++ b/drivers/regulator/mt6363-regulator.c @@ -363,7 +363,7 @@ static unsigned int mt6363_regulator_get_mode(struct regulator_dev *rdev) return REGULATOR_MODE_FAST; } else { val = 0; - }; + } ret = regmap_read(rdev->regmap, info->hw_lp_mode_reg, &val); val &= info->hw_lp_mode_mask; -- 2.47.3