]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
powerpc: rename swiotlb_dma_ops
authorChristoph Hellwig <hch@lst.de>
Sat, 23 Dec 2017 13:01:48 +0000 (14:01 +0100)
committerChristoph Hellwig <hch@lst.de>
Mon, 15 Jan 2018 08:35:26 +0000 (09:35 +0100)
We'll need that name for a generic implementation soon.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Acked-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
arch/powerpc/include/asm/swiotlb.h
arch/powerpc/kernel/dma-swiotlb.c
arch/powerpc/kernel/dma.c
arch/powerpc/sysdev/fsl_pci.c

index 9341ee804d19846a7c2cca3d9c83debe97565b27..f65ecf57b66c0a6feaaca6708daab0087a25b94c 100644 (file)
@@ -13,7 +13,7 @@
 
 #include <linux/swiotlb.h>
 
-extern const struct dma_map_ops swiotlb_dma_ops;
+extern const struct dma_map_ops powerpc_swiotlb_dma_ops;
 
 extern unsigned int ppc_swiotlb_enable;
 int __init swiotlb_setup_bus_notifier(void);
index f1e99b9cee979a003823d2acafe79c56ec0ca0a0..506ac4fafac5431e297cc0965439afc72b77f569 100644 (file)
@@ -46,7 +46,7 @@ static u64 swiotlb_powerpc_get_required(struct device *dev)
  * map_page, and unmap_page on highmem, use normal dma_ops
  * for everything else.
  */
-const struct dma_map_ops swiotlb_dma_ops = {
+const struct dma_map_ops powerpc_swiotlb_dma_ops = {
        .alloc = __dma_nommu_alloc_coherent,
        .free = __dma_nommu_free_coherent,
        .mmap = dma_nommu_mmap_coherent,
@@ -89,7 +89,7 @@ static int ppc_swiotlb_bus_notify(struct notifier_block *nb,
 
        /* May need to bounce if the device can't address all of DRAM */
        if ((dma_get_mask(dev) + 1) < memblock_end_of_DRAM())
-               set_dma_ops(dev, &swiotlb_dma_ops);
+               set_dma_ops(dev, &powerpc_swiotlb_dma_ops);
 
        return NOTIFY_DONE;
 }
index 76079841d3d0be4038643345ddd8a8e4fd4757b1..da20569de9d430cabba7f8d8713e0fb0982f801a 100644 (file)
@@ -33,7 +33,7 @@ static u64 __maybe_unused get_pfn_limit(struct device *dev)
        struct dev_archdata __maybe_unused *sd = &dev->archdata;
 
 #ifdef CONFIG_SWIOTLB
-       if (sd->max_direct_dma_addr && dev->dma_ops == &swiotlb_dma_ops)
+       if (sd->max_direct_dma_addr && dev->dma_ops == &powerpc_swiotlb_dma_ops)
                pfn = min_t(u64, pfn, sd->max_direct_dma_addr >> PAGE_SHIFT);
 #endif
 
index e4d0133bbeeb1cbbcc5ceb2a3669c5d325765ee0..61e07c78d64f649456fe21ef23b8e6b935e9b1a6 100644 (file)
@@ -118,7 +118,7 @@ static void setup_swiotlb_ops(struct pci_controller *hose)
 {
        if (ppc_swiotlb_enable) {
                hose->controller_ops.dma_dev_setup = pci_dma_dev_setup_swiotlb;
-               set_pci_dma_ops(&swiotlb_dma_ops);
+               set_pci_dma_ops(&powerpc_swiotlb_dma_ops);
        }
 }
 #else