diff options
author | Andreas Schwab | 2019-12-17 12:15:16 +0100 |
---|---|---|
committer | Paul Walmsley | 2019-12-20 03:32:24 -0800 |
commit | 0312a3d4b43c0045869379affc0e228e36411c78 (patch) | |
tree | 0877f073481f2a5cd5af98c8e92ec3796a8a8e18 /arch/riscv | |
parent | 7e0165b2f1a912a06e381e91f0f4e495f4ac3736 (diff) |
riscv: Fix use of undefined config option CONFIG_CONFIG_MMU
In Kconfig files, config options are written without the CONFIG_ prefix.
Fixes: 6bd33e1ece52 ("riscv: add nommu support")
Signed-off-by: Andreas Schwab <schwab@suse.de>
Reviewed-by: Anup Patel <anup@brainfault.org>
Signed-off-by: Paul Walmsley <paul.walmsley@sifive.com>
Diffstat (limited to 'arch/riscv')
-rw-r--r-- | arch/riscv/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/Kconfig b/arch/riscv/Kconfig index 759ffb00267c..d8efbaa78d67 100644 --- a/arch/riscv/Kconfig +++ b/arch/riscv/Kconfig @@ -154,7 +154,7 @@ config GENERIC_HWEIGHT def_bool y config FIX_EARLYCON_MEM - def_bool CONFIG_MMU + def_bool MMU config PGTABLE_LEVELS int |