lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Sun, 23 Jun 2019 22:13:04 +0700 From: Phong Tran <tranmanphong@...il.com> To: mark.rutland@....com, kstewart@...uxfoundation.org, songliubraving@...com, andrew@...n.ch, peterz@...radead.org, nsekhar@...com, ast@...nel.org, jolsa@...hat.com, netdev@...r.kernel.org, gerg@...inux.org, lorenzo.pieralisi@....com, will@...nel.org, linux-samsung-soc@...r.kernel.org, daniel@...earbox.net, tranmanphong@...il.com, festevam@...il.com, gregory.clement@...tlin.com, allison@...utok.net, linux@...linux.org.uk, krzk@...nel.org, haojian.zhuang@...il.com, bgolaszewski@...libre.com, tony@...mide.com, mingo@...hat.com, linux-imx@....com, yhs@...com, sebastian.hesselbarth@...il.com, illusionist.neo@...il.com, jason@...edaemon.net, liviu.dudau@....com, s.hauer@...gutronix.de, acme@...nel.org, lkundrak@...sk, robert.jarzmik@...e.fr, dmg@...ingmachine.org, swinslow@...il.com, namhyung@...nel.org, tglx@...utronix.de, linux-omap@...r.kernel.org, alexander.sverdlin@...il.com, linux-arm-kernel@...ts.infradead.org, info@...ux.net, gregkh@...uxfoundation.org, linux-kernel@...r.kernel.org, alexander.shishkin@...ux.intel.com, hsweeten@...ionengravers.com, kgene@...nel.org, kernel@...gutronix.de, sudeep.holla@....com, bpf@...r.kernel.org, shawnguo@...nel.org, kafai@...com, daniel@...que.org Subject: [PATCH 06/15] ARM: imx: cleanup cppcheck shifting errors [arch/arm/mach-imx/iomux-mx3.h:93]: (error) Shifting signed 32-bit value by 31 bits is undefined behaviour Signed-off-by: Phong Tran <tranmanphong@...il.com> --- arch/arm/mach-imx/iomux-mx3.h | 64 +++++++++++++++++++++---------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/arch/arm/mach-imx/iomux-mx3.h b/arch/arm/mach-imx/iomux-mx3.h index 99270a183d47..c30951dd110d 100644 --- a/arch/arm/mach-imx/iomux-mx3.h +++ b/arch/arm/mach-imx/iomux-mx3.h @@ -59,38 +59,38 @@ enum iomux_pad_config { * various IOMUX general purpose functions */ enum iomux_gp_func { - MUX_PGP_FIRI = 1 << 0, - MUX_DDR_MODE = 1 << 1, - MUX_PGP_CSPI_BB = 1 << 2, - MUX_PGP_ATA_1 = 1 << 3, - MUX_PGP_ATA_2 = 1 << 4, - MUX_PGP_ATA_3 = 1 << 5, - MUX_PGP_ATA_4 = 1 << 6, - MUX_PGP_ATA_5 = 1 << 7, - MUX_PGP_ATA_6 = 1 << 8, - MUX_PGP_ATA_7 = 1 << 9, - MUX_PGP_ATA_8 = 1 << 10, - MUX_PGP_UH2 = 1 << 11, - MUX_SDCTL_CSD0_SEL = 1 << 12, - MUX_SDCTL_CSD1_SEL = 1 << 13, - MUX_CSPI1_UART3 = 1 << 14, - MUX_EXTDMAREQ2_MBX_SEL = 1 << 15, - MUX_TAMPER_DETECT_EN = 1 << 16, - MUX_PGP_USB_4WIRE = 1 << 17, - MUX_PGP_USB_COMMON = 1 << 18, - MUX_SDHC_MEMSTICK1 = 1 << 19, - MUX_SDHC_MEMSTICK2 = 1 << 20, - MUX_PGP_SPLL_BYP = 1 << 21, - MUX_PGP_UPLL_BYP = 1 << 22, - MUX_PGP_MSHC1_CLK_SEL = 1 << 23, - MUX_PGP_MSHC2_CLK_SEL = 1 << 24, - MUX_CSPI3_UART5_SEL = 1 << 25, - MUX_PGP_ATA_9 = 1 << 26, - MUX_PGP_USB_SUSPEND = 1 << 27, - MUX_PGP_USB_OTG_LOOPBACK = 1 << 28, - MUX_PGP_USB_HS1_LOOPBACK = 1 << 29, - MUX_PGP_USB_HS2_LOOPBACK = 1 << 30, - MUX_CLKO_DDR_MODE = 1 << 31, + MUX_PGP_FIRI = 1U << 0, + MUX_DDR_MODE = 1U << 1, + MUX_PGP_CSPI_BB = 1U << 2, + MUX_PGP_ATA_1 = 1U << 3, + MUX_PGP_ATA_2 = 1U << 4, + MUX_PGP_ATA_3 = 1U << 5, + MUX_PGP_ATA_4 = 1U << 6, + MUX_PGP_ATA_5 = 1U << 7, + MUX_PGP_ATA_6 = 1U << 8, + MUX_PGP_ATA_7 = 1U << 9, + MUX_PGP_ATA_8 = 1U << 10, + MUX_PGP_UH2 = 1U << 11, + MUX_SDCTL_CSD0_SEL = 1U << 12, + MUX_SDCTL_CSD1_SEL = 1U << 13, + MUX_CSPI1_UART3 = 1U << 14, + MUX_EXTDMAREQ2_MBX_SEL = 1U << 15, + MUX_TAMPER_DETECT_EN = 1U << 16, + MUX_PGP_USB_4WIRE = 1U << 17, + MUX_PGP_USB_COMMON = 1U << 18, + MUX_SDHC_MEMSTICK1 = 1U << 19, + MUX_SDHC_MEMSTICK2 = 1U << 20, + MUX_PGP_SPLL_BYP = 1U << 21, + MUX_PGP_UPLL_BYP = 1U << 22, + MUX_PGP_MSHC1_CLK_SEL = 1U << 23, + MUX_PGP_MSHC2_CLK_SEL = 1U << 24, + MUX_CSPI3_UART5_SEL = 1U << 25, + MUX_PGP_ATA_9 = 1U << 26, + MUX_PGP_USB_SUSPEND = 1U << 27, + MUX_PGP_USB_OTG_LOOPBACK = 1U << 28, + MUX_PGP_USB_HS1_LOOPBACK = 1U << 29, + MUX_PGP_USB_HS2_LOOPBACK = 1U << 30, + MUX_CLKO_DDR_MODE = 1U << 31, }; /* -- 2.11.0
Powered by blists - more mailing lists