diff options
author | Corentin Labbe <clabbe@baylibre.com> | 2018-02-08 19:39:20 +0000 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2018-02-12 15:59:05 +0000 |
commit | 9d37c094dacda531ac3e529dd4dd139e3c0b7811 (patch) | |
tree | 3fc208bb7db2c97d1b04c54f6cc94ca14f46a078 /arch/ia64 | |
parent | 7928b2cbe55b2a410a0f5c1f154610059c57b1b2 (diff) | |
download | blackbird-op-linux-9d37c094dacda531ac3e529dd4dd139e3c0b7811.tar.gz blackbird-op-linux-9d37c094dacda531ac3e529dd4dd139e3c0b7811.zip |
ia64: fix build failure with CONFIG_SWIOTLB
arch/ia64/kernel/pci-swiotlb.c is removed in commit 4fac8076df85 ("ia64: clean up swiotlb support")
but pci-swiotlb.o is still present in Makefile, and so build fail when
CONFIG_SWIOTLB is enabled.
Fix the build failure by removing pci-swiotlb.o from makefile
Fixes: 4fac8076df85 ("ia64: clean up swiotlb support")
Signed-off-by: Corentin Labbe <clabbe@baylibre.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'arch/ia64')
-rw-r--r-- | arch/ia64/kernel/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/ia64/kernel/Makefile b/arch/ia64/kernel/Makefile index 0b4c65a1af25..498f3da3f225 100644 --- a/arch/ia64/kernel/Makefile +++ b/arch/ia64/kernel/Makefile @@ -41,7 +41,6 @@ ifneq ($(CONFIG_IA64_ESI),) obj-y += esi_stub.o # must be in kernel proper endif obj-$(CONFIG_INTEL_IOMMU) += pci-dma.o -obj-$(CONFIG_SWIOTLB) += pci-swiotlb.o obj-$(CONFIG_BINFMT_ELF) += elfcore.o |