Commit acc3815d authored by Chen Ni's avatar Chen Ni Committed by Arnd Bergmann

ARM: davinci: Convert comma to semicolon

Replace a comma between expression statements by a semicolon.

Fixes: efc1bb8a ("davinci: add power management support")
Signed-off-by: default avatarChen Ni <nichen@iscas.ac.cn>
Acked-by: default avatarBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parent f3a6a541
...@@ -61,7 +61,7 @@ static void davinci_pm_suspend(void) ...@@ -61,7 +61,7 @@ static void davinci_pm_suspend(void)
/* Configure sleep count in deep sleep register */ /* Configure sleep count in deep sleep register */
val = __raw_readl(pm_config.deepsleep_reg); val = __raw_readl(pm_config.deepsleep_reg);
val &= ~DEEPSLEEP_SLEEPCOUNT_MASK, val &= ~DEEPSLEEP_SLEEPCOUNT_MASK;
val |= pm_config.sleepcount; val |= pm_config.sleepcount;
__raw_writel(val, pm_config.deepsleep_reg); __raw_writel(val, pm_config.deepsleep_reg);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment