diff options
author | Christoph Hellwig <hch@lst.de> | 2018-05-28 13:47:57 +0300 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2018-05-28 13:48:25 +0300 |
commit | 0ead51c3fbd15a4bc91e984f1b18b5c9422fbb02 (patch) | |
tree | ad7bf76bbc559ce3fa320ae03ce562e286d2ddc4 /arch/x86/include | |
parent | 098afd981744061d37eb4d40bc3f755438570afb (diff) | |
download | linux-0ead51c3fbd15a4bc91e984f1b18b5c9422fbb02.tar.xz |
x86/pci-dma: switch the VIA 32-bit DMA quirk to use the struct device flag
Instead of globally disabling > 32bit DMA using the arch_dma_supported
hook walk the PCI bus under the actually affected bridge and mark every
device with the dma_32bit_limit flag. This also gets rid of the
arch_dma_supported hook entirely.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/include')
-rw-r--r-- | arch/x86/include/asm/dma-mapping.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/x86/include/asm/dma-mapping.h b/arch/x86/include/asm/dma-mapping.h index ef597478f0ac..ce4d176b3d13 100644 --- a/arch/x86/include/asm/dma-mapping.h +++ b/arch/x86/include/asm/dma-mapping.h @@ -30,9 +30,6 @@ static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus) return dma_ops; } -int arch_dma_supported(struct device *dev, u64 mask); -#define arch_dma_supported arch_dma_supported - bool arch_dma_alloc_attrs(struct device **dev); #define arch_dma_alloc_attrs arch_dma_alloc_attrs |