The wrappers in include/linux/pci-dma-compat.h should go away.
The patch has been generated with the coccinelle script below and has been
hand modified to replace GPF_ with a correct flag.
It has been compile tested.
When memory is allocated in 'lan743x_tx_ring_cleanup()' and
'lan743x_rx_ring_init()', GFP_KERNEL can be used because this flag is
already used to allocate some memory in these functions.
While at it, remove a useless (void *) casting in the first hunk in so that
the code is more consistent.
@@
@@
-    PCI_DMA_BIDIRECTIONAL
+    DMA_BIDIRECTIONAL
@@
@@
-    PCI_DMA_TODEVICE
+    DMA_TO_DEVICE
@@
@@
-    PCI_DMA_FROMDEVICE
+    DMA_FROM_DEVICE
@@
@@
-    PCI_DMA_NONE
+    DMA_NONE
@@
expression e1, e2, e3;
@@
-    pci_alloc_consistent(e1, e2, e3)
+    dma_alloc_coherent(&e1->dev, e2, e3, GFP_)
@@
expression e1, e2, e3;
@@
-    pci_zalloc_consistent(e1, e2, e3)
+    dma_alloc_coherent(&e1->dev, e2, e3, GFP_)
@@
expression e1, e2, e3, e4;
@@
-    pci_free_consistent(e1, e2, e3, e4)
+    dma_free_coherent(&e1->dev, e2, e3, e4)
@@
expression e1, e2, e3, e4;
@@
-    pci_map_single(e1, e2, e3, e4)
+    dma_map_single(&e1->dev, e2, e3, e4)
@@
expression e1, e2, e3, e4;
@@
-    pci_unmap_single(e1, e2, e3, e4)
+    dma_unmap_single(&e1->dev, e2, e3, e4)
@@
expression e1, e2, e3, e4, e5;
@@
-    pci_map_page(e1, e2, e3, e4, e5)
+    dma_map_page(&e1->dev, e2, e3, e4, e5)
@@
expression e1, e2, e3, e4;
@@
-    pci_unmap_page(e1, e2, e3, e4)
+    dma_unmap_page(&e1->dev, e2, e3, e4)
@@
expression e1, e2, e3, e4;
@@
-    pci_map_sg(e1, e2, e3, e4)
+    dma_map_sg(&e1->dev, e2, e3, e4)
@@
expression e1, e2, e3, e4;
@@
-    pci_unmap_sg(e1, e2, e3, e4)
+    dma_unmap_sg(&e1->dev, e2, e3, e4)
@@
expression e1, e2, e3, e4;
@@
-    pci_dma_sync_single_for_cpu(e1, e2, e3, e4)
+    dma_sync_single_for_cpu(&e1->dev, e2, e3, e4)
@@
expression e1, e2, e3, e4;
@@
-    pci_dma_sync_single_for_device(e1, e2, e3, e4)
+    dma_sync_single_for_device(&e1->dev, e2, e3, e4)
@@
expression e1, e2, e3, e4;
@@
-    pci_dma_sync_sg_for_cpu(e1, e2, e3, e4)
+    dma_sync_sg_for_cpu(&e1->dev, e2, e3, e4)
@@
expression e1, e2, e3, e4;
@@
-    pci_dma_sync_sg_for_device(e1, e2, e3, e4)
+    dma_sync_sg_for_device(&e1->dev, e2, e3, e4)
@@
expression e1, e2;
@@
-    pci_dma_mapping_error(e1, e2)
+    dma_mapping_error(&e1->dev, e2)
@@
expression e1, e2;
@@
-    pci_set_dma_mask(e1, e2)
+    dma_set_mask(&e1->dev, e2)
@@
expression e1, e2;
@@
-    pci_set_consistent_dma_mask(e1, e2)
+    dma_set_coherent_mask(&e1->dev, e2)
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
 static void lan743x_tx_ring_cleanup(struct lan743x_tx *tx)
 {
        if (tx->head_cpu_ptr) {
-               pci_free_consistent(tx->adapter->pdev,
-                                   sizeof(*tx->head_cpu_ptr),
-                                   (void *)(tx->head_cpu_ptr),
-                                   tx->head_dma_ptr);
+               dma_free_coherent(&tx->adapter->pdev->dev,
+                                 sizeof(*tx->head_cpu_ptr), tx->head_cpu_ptr,
+                                 tx->head_dma_ptr);
                tx->head_cpu_ptr = NULL;
                tx->head_dma_ptr = 0;
        }
        tx->buffer_info = NULL;
 
        if (tx->ring_cpu_ptr) {
-               pci_free_consistent(tx->adapter->pdev,
-                                   tx->ring_allocation_size,
-                                   tx->ring_cpu_ptr,
-                                   tx->ring_dma_ptr);
+               dma_free_coherent(&tx->adapter->pdev->dev,
+                                 tx->ring_allocation_size, tx->ring_cpu_ptr,
+                                 tx->ring_dma_ptr);
                tx->ring_allocation_size = 0;
                tx->ring_cpu_ptr = NULL;
                tx->ring_dma_ptr = 0;
                                     sizeof(struct lan743x_tx_descriptor),
                                     PAGE_SIZE);
        dma_ptr = 0;
-       cpu_ptr = pci_zalloc_consistent(tx->adapter->pdev,
-                                       ring_allocation_size, &dma_ptr);
+       cpu_ptr = dma_alloc_coherent(&tx->adapter->pdev->dev,
+                                    ring_allocation_size, &dma_ptr, GFP_KERNEL);
        if (!cpu_ptr) {
                ret = -ENOMEM;
                goto cleanup;
        }
        tx->buffer_info = (struct lan743x_tx_buffer_info *)cpu_ptr;
        dma_ptr = 0;
-       cpu_ptr = pci_zalloc_consistent(tx->adapter->pdev,
-                                       sizeof(*tx->head_cpu_ptr), &dma_ptr);
+       cpu_ptr = dma_alloc_coherent(&tx->adapter->pdev->dev,
+                                    sizeof(*tx->head_cpu_ptr), &dma_ptr,
+                                    GFP_KERNEL);
        if (!cpu_ptr) {
                ret = -ENOMEM;
                goto cleanup;
        }
 
        if (rx->head_cpu_ptr) {
-               pci_free_consistent(rx->adapter->pdev,
-                                   sizeof(*rx->head_cpu_ptr),
-                                   rx->head_cpu_ptr,
-                                   rx->head_dma_ptr);
+               dma_free_coherent(&rx->adapter->pdev->dev,
+                                 sizeof(*rx->head_cpu_ptr), rx->head_cpu_ptr,
+                                 rx->head_dma_ptr);
                rx->head_cpu_ptr = NULL;
                rx->head_dma_ptr = 0;
        }
        rx->buffer_info = NULL;
 
        if (rx->ring_cpu_ptr) {
-               pci_free_consistent(rx->adapter->pdev,
-                                   rx->ring_allocation_size,
-                                   rx->ring_cpu_ptr,
-                                   rx->ring_dma_ptr);
+               dma_free_coherent(&rx->adapter->pdev->dev,
+                                 rx->ring_allocation_size, rx->ring_cpu_ptr,
+                                 rx->ring_dma_ptr);
                rx->ring_allocation_size = 0;
                rx->ring_cpu_ptr = NULL;
                rx->ring_dma_ptr = 0;
                                     sizeof(struct lan743x_rx_descriptor),
                                     PAGE_SIZE);
        dma_ptr = 0;
-       cpu_ptr = pci_zalloc_consistent(rx->adapter->pdev,
-                                       ring_allocation_size, &dma_ptr);
+       cpu_ptr = dma_alloc_coherent(&rx->adapter->pdev->dev,
+                                    ring_allocation_size, &dma_ptr, GFP_KERNEL);
        if (!cpu_ptr) {
                ret = -ENOMEM;
                goto cleanup;
        }
        rx->buffer_info = (struct lan743x_rx_buffer_info *)cpu_ptr;
        dma_ptr = 0;
-       cpu_ptr = pci_zalloc_consistent(rx->adapter->pdev,
-                                       sizeof(*rx->head_cpu_ptr), &dma_ptr);
+       cpu_ptr = dma_alloc_coherent(&rx->adapter->pdev->dev,
+                                    sizeof(*rx->head_cpu_ptr), &dma_ptr,
+                                    GFP_KERNEL);
        if (!cpu_ptr) {
                ret = -ENOMEM;
                goto cleanup;