[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20190624135105.15579-5-tranmanphong@gmail.com>
Date: Mon, 24 Jun 2019 20:50:54 +0700
From: Phong Tran <tranmanphong@...il.com>
To: tranmanphong@...il.com
Cc: acme@...nel.org, alexander.shishkin@...ux.intel.com,
alexander.sverdlin@...il.com, allison@...utok.net, andrew@...n.ch,
ast@...nel.org, bgolaszewski@...libre.com, bpf@...r.kernel.org,
daniel@...earbox.net, daniel@...que.org, dmg@...ingmachine.org,
festevam@...il.com, gerg@...inux.org, gregkh@...uxfoundation.org,
gregory.clement@...tlin.com, haojian.zhuang@...il.com,
hsweeten@...ionengravers.com, illusionist.neo@...il.com,
info@...ux.net, jason@...edaemon.net, jolsa@...hat.com,
kafai@...com, kernel@...gutronix.de, kgene@...nel.org,
krzk@...nel.org, kstewart@...uxfoundation.org,
linux-arm-kernel@...ts.infradead.org, linux-imx@....com,
linux-kernel@...r.kernel.org, linux-omap@...r.kernel.org,
linux-samsung-soc@...r.kernel.org, linux@...linux.org.uk,
liviu.dudau@....com, lkundrak@...sk, lorenzo.pieralisi@....com,
mark.rutland@....com, mingo@...hat.com, namhyung@...nel.org,
netdev@...r.kernel.org, nsekhar@...com, peterz@...radead.org,
robert.jarzmik@...e.fr, s.hauer@...gutronix.de,
sebastian.hesselbarth@...il.com, shawnguo@...nel.org,
songliubraving@...com, sudeep.holla@....com, swinslow@...il.com,
tglx@...utronix.de, tony@...mide.com, will@...nel.org, yhs@...com
Subject: [PATCH V2 04/15] ARM: exynos: cleanup cppcheck shifting error
[arch/arm/mach-exynos/suspend.c:288]: (error) Shifting signed 32-bit
value by 31 bits is undefined behaviour
Signed-off-by: Phong Tran <tranmanphong@...il.com>
---
arch/arm/mach-exynos/suspend.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mach-exynos/suspend.c b/arch/arm/mach-exynos/suspend.c
index be122af0de8f..b6a73dc5bde4 100644
--- a/arch/arm/mach-exynos/suspend.c
+++ b/arch/arm/mach-exynos/suspend.c
@@ -285,7 +285,7 @@ static void exynos_pm_set_wakeup_mask(void)
* Set wake-up mask registers
* 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)
--
2.11.0
Powered by blists - more mailing lists