Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

regulator: rt5120: Convert comma to semicolon

Replace a comma between expression statements by a semicolon.

Fixes: c0216c0e68f7 ("regulator: rt5120: Add PMIC regulator support")
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Reviewed-by: ChiYuan Huang <cy_huang@richtek.com>
Link: https://patch.msgid.link/20240716084659.1252690-1-nichen@iscas.ac.cn
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Chen Ni and committed by
Mark Brown
3078425f 291f854e

+2 -2
+2 -2
drivers/regulator/rt5120-regulator.c
··· 245 245 desc->n_voltages = RT5120_BUCK1_NUM_VOLT; 246 246 desc->min_uV = RT5120_BUCK1_MINUV; 247 247 desc->uV_step = RT5120_BUCK1_STEPUV; 248 - desc->vsel_reg = RT5120_REG_CH1VID, 249 - desc->vsel_mask = RT5120_CH1VID_MASK, 248 + desc->vsel_reg = RT5120_REG_CH1VID; 249 + desc->vsel_mask = RT5120_CH1VID_MASK; 250 250 desc->ops = &rt5120_buck1_ops; 251 251 break; 252 252 case RT5120_REGULATOR_BUCK2 ... RT5120_REGULATOR_BUCK4: