1
0
Fork 0
mirror of synced 2025-03-06 20:59:54 +01:00

ARM: exynos: Cleanup cppcheck shifting warning

Fix warning from cppcheck tool:
"Shifting signed 32-bit value by 31 bits is undefined behaviour errors"

Signed-off-by: Phong Tran <tranmanphong@gmail.com>
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
This commit is contained in:
Phong Tran 2019-06-25 11:03:45 +07:00 committed by Krzysztof Kozlowski
parent 24d2c73ff2
commit a55e040c6f

View file

@ -285,7 +285,7 @@ static void exynos_pm_set_wakeup_mask(void)
* Set wake-up mask registers * Set wake-up mask registers
* EXYNOS_EINT_WAKEUP_MASK is set by pinctrl driver in late suspend. * EXYNOS_EINT_WAKEUP_MASK is set by pinctrl driver in late suspend.
*/ */
pmu_raw_writel(exynos_irqwake_intmask & ~(1 << 31), S5P_WAKEUP_MASK); pmu_raw_writel(exynos_irqwake_intmask & ~BIT(31), S5P_WAKEUP_MASK);
} }
static void exynos_pm_enter_sleep_mode(void) static void exynos_pm_enter_sleep_mode(void)