mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
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>
This commit is contained in:
parent
520eccdfe1
commit
1f59adb176
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ typedef u32 sysmmu_pte_t;
|
||||||
#define lv2ent_small(pent) ((*(pent) & 2) == 2)
|
#define lv2ent_small(pent) ((*(pent) & 2) == 2)
|
||||||
#define lv2ent_large(pent) ((*(pent) & 3) == 1)
|
#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"
|
#warning "revisit driver if we can enable big-endian ptes"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue