diff options
author | Valentin Rothberg <valentinrothberg@gmail.com> | 2017-09-18 16:39:42 -0400 |
---|---|---|
committer | Li Yang <leoyang.li@nxp.com> | 2017-09-22 13:33:07 -0500 |
commit | 219e8e0580cc441504b75e291401cf108e1a78f3 (patch) | |
tree | 310e84ae752a03c345fdf1d8d25084c6d823dde3 /drivers/soc | |
parent | 6111d198362b9b3ffc1c253c74119cca9afd3968 (diff) | |
download | linux-stable-219e8e0580cc441504b75e291401cf108e1a78f3.tar.gz linux-stable-219e8e0580cc441504b75e291401cf108e1a78f3.tar.bz2 linux-stable-219e8e0580cc441504b75e291401cf108e1a78f3.zip |
soc/fsl/qbman: Fix ARM32 typo
The Kconfig symbol for 32bit ARM is 'ARM', not 'ARM32'.
Signed-off-by: Valentin Rothberg <valentinrothberg@gmail.com>
Signed-off-by: Claudiu Manoil <claudiu.manoil@nxp.com>
Signed-off-by: Roy Pledge <roy.pledge@nxp.com>
Reviewed-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Li Yang <leoyang.li@nxp.com>
Diffstat (limited to 'drivers/soc')
-rw-r--r-- | drivers/soc/fsl/qbman/dpaa_sys.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/fsl/qbman/dpaa_sys.h b/drivers/soc/fsl/qbman/dpaa_sys.h index 4b1a4674d5c4..61cfdb396fe5 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); |