Skip to content

Commit acc3815

Browse files
Chen Niarndb
authored andcommitted
ARM: davinci: Convert comma to semicolon
Replace a comma between expression statements by a semicolon. Fixes: efc1bb8 ("davinci: add power management support") Signed-off-by: Chen Ni <[email protected]> Acked-by: Bartosz Golaszewski <[email protected]> Signed-off-by: Arnd Bergmann <[email protected]>
1 parent f3a6a54 commit acc3815

File tree

1 file changed

+1
-1
lines changed
  • arch/arm/mach-davinci

1 file changed

+1
-1
lines changed

arch/arm/mach-davinci/pm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ static void davinci_pm_suspend(void)
6161

6262
/* Configure sleep count in deep sleep register */
6363
val = __raw_readl(pm_config.deepsleep_reg);
64-
val &= ~DEEPSLEEP_SLEEPCOUNT_MASK,
64+
val &= ~DEEPSLEEP_SLEEPCOUNT_MASK;
6565
val |= pm_config.sleepcount;
6666
__raw_writel(val, pm_config.deepsleep_reg);
6767

0 commit comments

Comments
 (0)