diff options
author | Christoph Hellwig <hch@lst.de> | 2018-04-03 16:43:51 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2018-05-09 06:57:27 +0200 |
commit | f21254cdd147d703ed9b79382cab8aff5a966397 (patch) | |
tree | 9f057a6b030b739a26aebd8eb7ad0505ef316d45 /arch/arm | |
parent | 8e6390795eacf87f717bc755f352f0aa85da5700 (diff) | |
download | linux-f21254cdd147d703ed9b79382cab8aff5a966397.tar.gz linux-f21254cdd147d703ed9b79382cab8aff5a966397.tar.bz2 linux-f21254cdd147d703ed9b79382cab8aff5a966397.zip |
arm: don't build swiotlb by default
swiotlb is only used as a library of helper for xen-swiotlb if Xen support
is enabled on arm, so don't build it by default.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 924ccac1836b..4a176c369ab7 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -1773,7 +1773,7 @@ config SECCOMP defined by each seccomp mode. config SWIOTLB - def_bool y + bool config PARAVIRT bool "Enable paravirtualization code" @@ -1806,6 +1806,7 @@ config XEN depends on MMU select ARCH_DMA_ADDR_T_64BIT select ARM_PSCI + select SWIOTLB select SWIOTLB_XEN select PARAVIRT help |