Use dma_alloc_coherent() instead of pci_alloc_consistent(),
because only dma_alloc_coherent() is called here.
Signed-off-by: Cai Huoqing <caihuoqing@baidu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
        bp->rx_ring = dma_alloc_coherent(bp->sdev->dma_dev, size,
                                         &bp->rx_ring_dma, gfp);
        if (!bp->rx_ring) {
-               /* Allocation may have failed due to pci_alloc_consistent
+               /* Allocation may have failed due to dma_alloc_coherent
                   insisting on use of GFP_DMA, which is more restrictive
                   than necessary...  */
                struct dma_desc *rx_ring;