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 <nichen@iscas.ac.cn>
Link: https://patch.msgid.link/20251107085109.2316999-1-nichen@iscas.ac.cn
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Chen Ni 2025-11-07 16:51:09 +08:00 committed by Mark Brown
parent b6f4bd64f4
commit 2089f08630
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0
1 changed files with 1 additions and 1 deletions

View File

@ -363,7 +363,7 @@ static unsigned int mt6363_regulator_get_mode(struct regulator_dev *rdev)
return REGULATOR_MODE_FAST; return REGULATOR_MODE_FAST;
} else { } else {
val = 0; val = 0;
}; }
ret = regmap_read(rdev->regmap, info->hw_lp_mode_reg, &val); ret = regmap_read(rdev->regmap, info->hw_lp_mode_reg, &val);
val &= info->hw_lp_mode_mask; val &= info->hw_lp_mode_mask;