ARM: davinci: Convert comma to semicolon
authorChen Ni <nichen@iscas.ac.cn>
Wed, 10 Jul 2024 08:16:48 +0000 (16:16 +0800)
committerArnd Bergmann <arnd@arndb.de>
Wed, 10 Jul 2024 13:22:08 +0000 (15:22 +0200)
Replace a comma between expression statements by a semicolon.

Fixes: efc1bb8a6fd5 ("davinci: add power management support")
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Acked-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
arch/arm/mach-davinci/pm.c

index 8aa39db..2c5155b 100644 (file)
@@ -61,7 +61,7 @@ static void davinci_pm_suspend(void)
 
        /* Configure sleep count in deep sleep register */
        val = __raw_readl(pm_config.deepsleep_reg);
-       val &= ~DEEPSLEEP_SLEEPCOUNT_MASK,
+       val &= ~DEEPSLEEP_SLEEPCOUNT_MASK;
        val |= pm_config.sleepcount;
        __raw_writel(val, pm_config.deepsleep_reg);