]> git.baikalelectronics.ru Git - kernel.git/commit
DMA-API: net: nxp/lpc_eth: use dma_coerce_mask_and_coherent()
authorRussell King <rmk+kernel@arm.linux.org.uk>
Thu, 27 Jun 2013 13:03:13 +0000 (14:03 +0100)
committerRussell King <rmk+kernel@arm.linux.org.uk>
Thu, 31 Oct 2013 14:48:56 +0000 (14:48 +0000)
commitce8da616753e87341f504df4c968e940671d9acc
treebb9cac70fff30c31b6731e1bad411697b886b959
parent33bb5c19a1e31ebbea414459592fd3e10b27a0b2
DMA-API: net: nxp/lpc_eth: use dma_coerce_mask_and_coherent()

The code sequence:
pldat->pdev->dev.coherent_dma_mask = 0xFFFFFFFF;
pldat->pdev->dev.dma_mask = &pldat->pdev->dev.coherent_dma_mask;
bypasses the architectures check on the DMA mask.  It can be replaced
with dma_coerce_mask_and_coherent(), avoiding the direct initialization
of this mask.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
drivers/net/ethernet/nxp/lpc_eth.c