]> www.infradead.org Git - users/hch/xfs.git/commitdiff
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 8aa39db095d76105e47614442128a0ca76ca697c..2c5155bd376ba8df2e00dc6d1cf0b3c6284a9a31 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);