]> www.infradead.org Git - linux.git/commitdiff
ARC: fix reference of dependency for PAE40 config
authorLukas Bulwahn <lukas.bulwahn@redhat.com>
Mon, 28 Oct 2024 09:59:07 +0000 (10:59 +0100)
committerVineet Gupta <vgupta@kernel.org>
Tue, 10 Dec 2024 18:12:56 +0000 (10:12 -0800)
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 <lukas.bulwahn@redhat.com>
Signed-off-by: Vineet Gupta <vgupta@kernel.org>
arch/arc/Kconfig

index 69c6e71fa1e6ba21fff7b67cb2ca0442099ad5d1..ea5a1dcb133b4f02f96a6d5ba30e5098770845d1 100644 (file)
@@ -473,7 +473,7 @@ config HIGHMEM
 
 config ARC_HAS_PAE40
        bool "Support for the 40-bit Physical Address Extension"
-       depends on MMU_V4
+       depends on ARC_MMU_V4
        depends on !ARC_PAGE_SIZE_4K
        select HIGHMEM
        select PHYS_ADDR_T_64BIT