diff options
author | Arnd Bergmann <arnd@arndb.de> | 2022-07-01 11:44:52 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2022-09-09 17:14:34 +0200 |
commit | e7536617baec3b4717a37795cec306df9d655d07 (patch) | |
tree | 0c8b0e45d7b50eb16f5a6cc3cb8275457344f48f /arch/arm/mach-footbridge/Makefile | |
parent | b6dd828445aa3db9503e95863b6dad7483a963a3 (diff) | |
download | linux-next-e7536617baec3b4717a37795cec306df9d655d07.tar.gz |
ARM: footbridge: move isa-dma support into footbridge
The dma-isa.c was shared between footbridge and shark a long time ago,
but as shark was removed, it can be made footbridge specific again.
The fb_dma bits in turn are not used at all and can be removed.
All the ISA related files are now built into the platform regardless
of CONFIG_ISA, as they just refer to on-chip devices rather than actual
ISA cards.
Reviewed-by: Christoph Hellwig <hch@lst.de>
Tested-by: Marc Zyngier <maz@kernel.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-footbridge/Makefile')
-rw-r--r-- | arch/arm/mach-footbridge/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-footbridge/Makefile b/arch/arm/mach-footbridge/Makefile index 30bae6684dce..55d570739f19 100644 --- a/arch/arm/mach-footbridge/Makefile +++ b/arch/arm/mach-footbridge/Makefile @@ -5,7 +5,7 @@ # Object file lists. -obj-y := common.o dma.o isa-irq.o +obj-y := common.o isa-irq.o isa.o isa-rtc.o dma-isa.o pci-y += dc21285.o pci-$(CONFIG_ARCH_CATS) += cats-pci.o @@ -18,4 +18,3 @@ obj-$(CONFIG_ARCH_NETWINDER) += netwinder-hw.o isa-timer.o obj-$(CONFIG_PCI) +=$(pci-y) -obj-$(CONFIG_ISA) += isa.o isa-rtc.o |