aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iommu/exynos-iommu.c
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <krzk@kernel.org>2017-07-17 07:47:02 +0200
committerJoerg Roedel <jroedel@suse.de>2017-07-26 11:54:31 +0200
commit1f59adb1766d0261085327d97ec185f502d359ab (patch)
tree9289a155d22155bc4dbbc2e0be8352fea6f2fcf9 /drivers/iommu/exynos-iommu.c
parentLinux 4.13-rc2 (diff)
downloadlinux-dev-1f59adb1766d0261085327d97ec185f502d359ab.tar.xz
linux-dev-1f59adb1766d0261085327d97ec185f502d359ab.zip
iommu/exynos: Replace non-existing big-endian Kconfig option
Wrong Kconfig option was used when adding warning for untested big-endian capabilities. There is no CONFIG_BIG_ENDIAN option. Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> Signed-off-by: Joerg Roedel <jroedel@suse.de>
Diffstat (limited to 'drivers/iommu/exynos-iommu.c')
-rw-r--r--drivers/iommu/exynos-iommu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iommu/exynos-iommu.c b/drivers/iommu/exynos-iommu.c
index 2395478dde75..b7aebaf28b82 100644
--- a/drivers/iommu/exynos-iommu.c
+++ b/drivers/iommu/exynos-iommu.c
@@ -54,7 +54,7 @@ typedef u32 sysmmu_pte_t;
#define lv2ent_small(pent) ((*(pent) & 2) == 2)
#define lv2ent_large(pent) ((*(pent) & 3) == 1)
-#ifdef CONFIG_BIG_ENDIAN
+#ifdef CONFIG_CPU_BIG_ENDIAN
#warning "revisit driver if we can enable big-endian ptes"
#endif