[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20190625040356.27473-8-tranmanphong@gmail.com>
Date: Tue, 25 Jun 2019 11:03:48 +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 V3 07/15] ARM: ks8695: cleanup cppcheck shifting error
There is error from cppcheck tool
"Shifting signed 32-bit value by 31 bits is undefined behaviour errors"
change to use BIT() marco for improvement.
Signed-off-by: Phong Tran <tranmanphong@...il.com>
---
arch/arm/mach-ks8695/regs-pci.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/mach-ks8695/regs-pci.h b/arch/arm/mach-ks8695/regs-pci.h
index 75a9db6edbd9..7d28a83bb574 100644
--- a/arch/arm/mach-ks8695/regs-pci.h
+++ b/arch/arm/mach-ks8695/regs-pci.h
@@ -45,9 +45,9 @@
-#define CFRV_GUEST (1 << 23)
+#define CFRV_GUEST BIT(23)
#define PBCA_TYPE1 (1)
-#define PBCA_ENABLE (1 << 31)
+#define PBCA_ENABLE BIT(31)
--
2.11.0
Powered by blists - more mailing lists