diff options
author | Christoph Hellwig <hch@lst.de> | 2021-02-10 10:56:40 +0100 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2021-02-13 09:51:45 +0100 |
commit | a86497d66dd5891cef594744b8d56bc451aac418 (patch) | |
tree | 22f2a4568b1a866c3b84f5bd680205a9b314bf38 /arch/mips/kernel | |
parent | 6d4e9a8efe3d59f31367d79e970c2f328da139a4 (diff) | |
download | lwn-a86497d66dd5891cef594744b8d56bc451aac418.tar.gz lwn-a86497d66dd5891cef594744b8d56bc451aac418.zip |
MIPS: remove CONFIG_DMA_MAYBE_COHERENT
CONFIG_DMA_MAYBE_COHERENT just guards two early init options now. Just
enable them unconditionally for CONFIG_DMA_NONCOHERENT.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Diffstat (limited to 'arch/mips/kernel')
-rw-r--r-- | arch/mips/kernel/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/setup.c b/arch/mips/kernel/setup.c index f0f533294311..fb59188b623f 100644 --- a/arch/mips/kernel/setup.c +++ b/arch/mips/kernel/setup.c @@ -801,7 +801,7 @@ static int __init debugfs_mips(void) arch_initcall(debugfs_mips); #endif -#ifdef CONFIG_DMA_MAYBE_COHERENT +#ifdef CONFIG_DMA_NONCOHERENT static int __init setcoherentio(char *str) { dma_default_coherent = true; |