summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Rothberg <valentinrothberg@gmail.com>2016-09-27 08:27:41 (GMT)
committerXie Xiaobo <xiaobo.xie@nxp.com>2017-12-12 07:32:38 (GMT)
commita06df16d230832520a3465dc67f4ae7b01c0ec1f (patch)
tree6dc72f47930066be985f1157319eca00483c391c
parentde7472c09fd465cab8c6aff89efc89f1b0e93cb0 (diff)
downloadlinux-a06df16d230832520a3465dc67f4ae7b01c0ec1f.tar.xz
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>
-rw-r--r--drivers/soc/fsl/qbman/dpaa_sys.h2
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 4f1623b..ae65758 100644
--- a/drivers/soc/fsl/qbman/dpaa_sys.h
+++ b/drivers/soc/fsl/qbman/dpaa_sys.h
@@ -52,7 +52,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);