Skip to content

Commit ee558c3

Browse files
bulwahnmehmetb0
authored andcommitted
ARC: fix reference of dependency for PAE40 config
BugLink: https://bugs.launchpad.net/bugs/2097738 Commit d71e629bed5b ("ARC: build: disallow invalid PAE40 + 4K page config") reworks the build dependencies for ARC_HAS_PAE40, and accidentally refers to the non-existing config option MMU_V4 rather than the intended option ARC_MMU_V4. Note the missing prefix in the name here. Refer to the intended config option in the dependency of the ARC_HAS_PAE40 config. Fixes: d71e629bed5b ("ARC: build: disallow invalid PAE40 + 4K page config") Signed-off-by: Lukas Bulwahn <[email protected]> Signed-off-by: Vineet Gupta <[email protected]> (cherry picked from commit dd2b230) [koichiroden: pulled in follow-up fix from mainline] Signed-off-by: Koichiro Den <[email protected]>
1 parent 5f549ca commit ee558c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arc/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ config HIGHMEM
472472

473473
config ARC_HAS_PAE40
474474
bool "Support for the 40-bit Physical Address Extension"
475-
depends on MMU_V4
475+
depends on ARC_MMU_V4
476476
depends on !ARC_PAGE_SIZE_4K
477477
select HIGHMEM
478478
select PHYS_ADDR_T_64BIT

0 commit comments

Comments
 (0)