net: broadcom: Fix a function name in comments
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>
This commit is contained in:
parent
8d04c7b964
commit
8b58cba44e
|
@ -1200,7 +1200,7 @@ static int b44_alloc_consistent(struct b44 *bp, gfp_t gfp)
|
||||||
bp->rx_ring = dma_alloc_coherent(bp->sdev->dma_dev, size,
|
bp->rx_ring = dma_alloc_coherent(bp->sdev->dma_dev, size,
|
||||||
&bp->rx_ring_dma, gfp);
|
&bp->rx_ring_dma, gfp);
|
||||||
if (!bp->rx_ring) {
|
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
|
insisting on use of GFP_DMA, which is more restrictive
|
||||||
than necessary... */
|
than necessary... */
|
||||||
struct dma_desc *rx_ring;
|
struct dma_desc *rx_ring;
|
||||||
|
|
Loading…
Reference in New Issue