diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2016-02-03 10:32:22 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2016-02-03 10:32:22 +0100 |
commit | 74c81ecdc0e37b917d7c6358ed72dc8337d8900f (patch) | |
tree | 21a62ee9aa870017542841881adc9d4f313451a1 /arch/mips | |
parent | 7aa7047100113ec9f5e4e685f94223825bd74a7b (diff) |
MIPS: R6000: Don't allow 64k pages for R6000.
The R6000 does not support 64k pages.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 57a945e832f4..74a3db92da1b 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -2085,7 +2085,7 @@ config PAGE_SIZE_32KB config PAGE_SIZE_64KB bool "64kB" - depends on !CPU_R3000 && !CPU_TX39XX + depends on !CPU_R3000 && !CPU_TX39XX && !CPU_R6000 help Using 64kB page size will result in higher performance kernel at the price of higher memory consumption. This option is available on |