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: Mon, 18 Sep 2017 16:39:42 -0400 From: Roy Pledge <roy.pledge@....com> To: <leoyang.li@....com>, <linuxppc-dev@...ts.ozlabs.org>, <linux-arm-kernel@...ts.infradead.org>, <linux-kernel@...r.kernel.org>, <devicetree@...r.kernel.org> CC: <oss@...error.net>, <madalin.bucur@....com>, <catalin.marinas@....com>, <linux@...linux.org.uk>, <arnd@...db.de>, <mark.rutland@....com>, Valentin Rothberg <valentinrothberg@...il.com>, Claudiu Manoil <claudiu.manoil@....com>, Roy Pledge <roy.pledge@....com> Subject: [v5 07/12] soc/fsl/qbman: Fix ARM32 typo From: Valentin Rothberg <valentinrothberg@...il.com> The Kconfig symbol for 32bit ARM is 'ARM', not 'ARM32'. Signed-off-by: Valentin Rothberg <valentinrothberg@...il.com> Signed-off-by: Claudiu Manoil <claudiu.manoil@....com> Signed-off-by: Roy Pledge <roy.pledge@....com> --- drivers/soc/fsl/qbman/dpaa_sys.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/soc/fsl/qbman/dpaa_sys.h b/drivers/soc/fsl/qbman/dpaa_sys.h index 4b1a467..61cfdb3 100644 --- a/drivers/soc/fsl/qbman/dpaa_sys.h +++ b/drivers/soc/fsl/qbman/dpaa_sys.h @@ -53,7 +53,7 @@ static inline void dpaa_flush(void *p) { #ifdef CONFIG_PPC flush_dcache_range((unsigned long)p, (unsigned long)p+64); -#elif defined(CONFIG_ARM32) +#elif defined(CONFIG_ARM) __cpuc_flush_dcache_area(p, 64); #elif defined(CONFIG_ARM64) __flush_dcache_area(p, 64); -- 2.7.4
Powered by blists - more mailing lists