diff options
| author | Christoph Hellwig <hch@lst.de> | 2024-08-28 09:02:47 +0300 |
|---|---|---|
| committer | Christoph Hellwig <hch@lst.de> | 2024-09-04 07:08:51 +0300 |
| commit | de6c85bf918ea52d5c680f0d130b37ee2ff152d6 (patch) | |
| tree | 4dd1ee15eaeac8ee0f26c1c4ec258d6b81057581 /drivers/media/pci | |
| parent | 92193b3569ade4968011007356c8606def0657a1 (diff) | |
| download | linux-de6c85bf918ea52d5c680f0d130b37ee2ff152d6.tar.gz linux-de6c85bf918ea52d5c680f0d130b37ee2ff152d6.tar.bz2 linux-de6c85bf918ea52d5c680f0d130b37ee2ff152d6.zip | |
dma-mapping: clearly mark DMA ops as an architecture feature
DMA ops are a helper for architectures and not for drivers to override
the DMA implementation.
Unfortunately driver authors keep ignoring this. Make the fact more
clear by renaming the symbol to ARCH_HAS_DMA_OPS and having the two drivers
overriding their dma_ops depend on that. These drivers should probably be
marked broken, but we can give them a bit of a grace period for that.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com> # for IPU6
Acked-by: Robin Murphy <robin.murphy@arm.com>
Diffstat (limited to 'drivers/media/pci')
| -rw-r--r-- | drivers/media/pci/intel/ipu6/Kconfig | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/media/pci/intel/ipu6/Kconfig b/drivers/media/pci/intel/ipu6/Kconfig index 40e20f0aa5ae..49e4fb696573 100644 --- a/drivers/media/pci/intel/ipu6/Kconfig +++ b/drivers/media/pci/intel/ipu6/Kconfig @@ -4,8 +4,13 @@ config VIDEO_INTEL_IPU6 depends on VIDEO_DEV depends on X86 && X86_64 && HAS_DMA depends on IPU_BRIDGE || !IPU_BRIDGE + # + # This driver incorrectly tries to override the dma_ops. It should + # never have done that, but for now keep it working on architectures + # that use dma ops + # + depends on ARCH_HAS_DMA_OPS select AUXILIARY_BUS - select DMA_OPS select IOMMU_IOVA select VIDEO_V4L2_SUBDEV_API select MEDIA_CONTROLLER |
