diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2013-06-27 08:34:52 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2013-10-31 10:48:49 -0400 |
commit | 105f4ade6fa0fc41742c83fc929e7fdc5a095233 (patch) | |
tree | eecda5848c7335b3e9f9f8dd6c0f7bfcf2f8b757 | |
parent | c9bd5e690a439df044678d89e89e380cf9db7930 (diff) |
DMA-API: ata: pata_octeon_cf: convert to use dma_coerce_mask_and_coherent()
Convert this code sequence:
pdev->dev.coherent_dma_mask = DMA_BIT_MASK(64);
pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
to use dma_coerce_mask_and_coherent() to avoid bypassing the architecture
check on the DMA mask.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
-rw-r--r-- | drivers/ata/pata_octeon_cf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/ata/pata_octeon_cf.c b/drivers/ata/pata_octeon_cf.c index c51bbb9ea8e8..83c4ddb1bc7f 100644 --- a/drivers/ata/pata_octeon_cf.c +++ b/drivers/ata/pata_octeon_cf.c | |||
@@ -1014,8 +1014,9 @@ static int octeon_cf_probe(struct platform_device *pdev) | |||
1014 | } | 1014 | } |
1015 | cf_port->c0 = ap->ioaddr.ctl_addr; | 1015 | cf_port->c0 = ap->ioaddr.ctl_addr; |
1016 | 1016 | ||
1017 | pdev->dev.coherent_dma_mask = DMA_BIT_MASK(64); | 1017 | rv = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64)); |
1018 | pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask; | 1018 | if (rv) |
1019 | return rv; | ||
1019 | 1020 | ||
1020 | ata_port_desc(ap, "cmd %p ctl %p", base, ap->ioaddr.ctl_addr); | 1021 | ata_port_desc(ap, "cmd %p ctl %p", base, ap->ioaddr.ctl_addr); |
1021 | 1022 | ||