diff options
author | Christoph Hellwig <hch@lst.de> | 2018-07-18 15:55:20 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2018-08-02 13:54:15 +0200 |
commit | 46bcde94cd02283535cb719666399f1c4cfb8f22 (patch) | |
tree | fadc33231f3e6a67d572885d180af95aa54e4a6c /arch/sh/kernel/Makefile | |
parent | sh: use dma_direct_ops for the CONFIG_DMA_COHERENT case (diff) | |
download | linux-46bcde94cd02283535cb719666399f1c4cfb8f22.tar.xz linux-46bcde94cd02283535cb719666399f1c4cfb8f22.zip |
sh: split arch/sh/mm/consistent.c
Half of the file just contains platform device memory setup code which
is required for all builds, and half contains helpers for dma coherent
allocation, which is only needed if CONFIG_DMA_NONCOHERENT is enabled.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Acked-by: Yoshinori Sato <ysato@users.sourceforge.jp>
Diffstat (limited to 'arch/sh/kernel/Makefile')
-rw-r--r-- | arch/sh/kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/kernel/Makefile b/arch/sh/kernel/Makefile index cb5f1bfb52de..d5ddb64bfffe 100644 --- a/arch/sh/kernel/Makefile +++ b/arch/sh/kernel/Makefile @@ -45,7 +45,7 @@ obj-$(CONFIG_DUMP_CODE) += disassemble.o obj-$(CONFIG_HIBERNATION) += swsusp.o obj-$(CONFIG_DWARF_UNWINDER) += dwarf.o obj-$(CONFIG_PERF_EVENTS) += perf_event.o perf_callchain.o -obj-$(CONFIG_DMA_NONCOHERENT) += dma-nommu.o +obj-$(CONFIG_DMA_NONCOHERENT) += dma-nommu.o dma-coherent.o obj-$(CONFIG_HAVE_HW_BREAKPOINT) += hw_breakpoint.o ccflags-y := -Werror |