mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 01:04:41 +01:00
mfd: atmel-flexcom/rk8xx-core: Convert comma to semicolon
Replace a comma between expression statements by a semicolon. Signed-off-by: Shen Lichuan <shenlichuan@vivo.com> Acked-by: Nicolas Ferre <nicolas.ferre@microchip.com> # for atmel-flexcom.c Link: https://lore.kernel.org/r/20240905092718.95011-1-shenlichuan@vivo.com Signed-off-by: Lee Jones <lee@kernel.org>
This commit is contained in:
parent
2e63d6fa11
commit
b7cb398d7b
2 changed files with 2 additions and 2 deletions
|
|
@ -95,7 +95,7 @@ static int __maybe_unused atmel_flexcom_resume_noirq(struct device *dev)
|
|||
if (err)
|
||||
return err;
|
||||
|
||||
val = FLEX_MR_OPMODE(ddata->opmode),
|
||||
val = FLEX_MR_OPMODE(ddata->opmode);
|
||||
writel(val, ddata->base + FLEX_MR);
|
||||
|
||||
clk_disable_unprepare(ddata->clk);
|
||||
|
|
|
|||
|
|
@ -618,7 +618,7 @@ static int rk808_power_off(struct sys_off_data *data)
|
|||
bit = DEV_OFF;
|
||||
break;
|
||||
case RK808_ID:
|
||||
reg = RK808_DEVCTRL_REG,
|
||||
reg = RK808_DEVCTRL_REG;
|
||||
bit = DEV_OFF_RST;
|
||||
break;
|
||||
case RK809_ID:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue