Commit e1fd7341 authored by Russell King's avatar Russell King

DMA-API: usb: use new dma_coerce_mask_and_coherent()

Acked-by: default avatarFelipe Balbi <balbi@ti.com>
Acked-by: default avatarNicolas Ferre <nicolas.ferre@atmel.com>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 22d9d8e8
...@@ -121,9 +121,7 @@ static int ci_hdrc_imx_probe(struct platform_device *pdev) ...@@ -121,9 +121,7 @@ static int ci_hdrc_imx_probe(struct platform_device *pdev)
pdata.phy = data->phy; pdata.phy = data->phy;
if (!pdev->dev.dma_mask) ret = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
ret = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
if (ret) if (ret)
goto err_clk; goto err_clk;
......
...@@ -119,9 +119,7 @@ static int dwc3_exynos_probe(struct platform_device *pdev) ...@@ -119,9 +119,7 @@ static int dwc3_exynos_probe(struct platform_device *pdev)
* Since shared usb code relies on it, set it here for now. * Since shared usb code relies on it, set it here for now.
* Once we move to full device tree support this will vanish off. * Once we move to full device tree support this will vanish off.
*/ */
if (!dev->dma_mask) ret = dma_coerce_mask_and_coherent(dev, DMA_BIT_MASK(32));
dev->dma_mask = &dev->coherent_dma_mask;
ret = dma_set_coherent_mask(dev, DMA_BIT_MASK(32));
if (ret) if (ret)
goto err1; goto err1;
......
...@@ -90,9 +90,7 @@ static int ehci_atmel_drv_probe(struct platform_device *pdev) ...@@ -90,9 +90,7 @@ static int ehci_atmel_drv_probe(struct platform_device *pdev)
* Since shared usb code relies on it, set it here for now. * Since shared usb code relies on it, set it here for now.
* Once we have dma capability bindings this can go away. * Once we have dma capability bindings this can go away.
*/ */
if (!pdev->dev.dma_mask) retval = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
retval = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
if (retval) if (retval)
goto fail_create_hcd; goto fail_create_hcd;
......
...@@ -144,9 +144,7 @@ static int ehci_hcd_omap_probe(struct platform_device *pdev) ...@@ -144,9 +144,7 @@ static int ehci_hcd_omap_probe(struct platform_device *pdev)
* Since shared usb code relies on it, set it here for now. * Since shared usb code relies on it, set it here for now.
* Once we have dma capability bindings this can go away. * Once we have dma capability bindings this can go away.
*/ */
if (!dev->dma_mask) ret = dma_coerce_mask_and_coherent(dev, DMA_BIT_MASK(32));
dev->dma_mask = &dev->coherent_dma_mask;
ret = dma_set_coherent_mask(dev, DMA_BIT_MASK(32));
if (ret) if (ret)
return ret; return ret;
......
...@@ -180,9 +180,7 @@ static int ehci_orion_drv_probe(struct platform_device *pdev) ...@@ -180,9 +180,7 @@ static int ehci_orion_drv_probe(struct platform_device *pdev)
* set. Since shared usb code relies on it, set it here for * set. Since shared usb code relies on it, set it here for
* now. Once we have dma capability bindings this can go away. * now. Once we have dma capability bindings this can go away.
*/ */
if (!pdev->dev.dma_mask) err = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
err = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
if (err) if (err)
goto err1; goto err1;
......
...@@ -89,9 +89,8 @@ static int ehci_platform_probe(struct platform_device *dev) ...@@ -89,9 +89,8 @@ static int ehci_platform_probe(struct platform_device *dev)
*/ */
if (!dev_get_platdata(&dev->dev)) if (!dev_get_platdata(&dev->dev))
dev->dev.platform_data = &ehci_platform_defaults; dev->dev.platform_data = &ehci_platform_defaults;
if (!dev->dev.dma_mask)
dev->dev.dma_mask = &dev->dev.coherent_dma_mask; err = dma_coerce_mask_and_coherent(&dev->dev, DMA_BIT_MASK(32));
err = dma_set_coherent_mask(&dev->dev, DMA_BIT_MASK(32));
if (err) if (err)
return err; return err;
......
...@@ -89,9 +89,7 @@ static int s5p_ehci_probe(struct platform_device *pdev) ...@@ -89,9 +89,7 @@ static int s5p_ehci_probe(struct platform_device *pdev)
* Since shared usb code relies on it, set it here for now. * Since shared usb code relies on it, set it here for now.
* Once we move to full device tree support this will vanish off. * Once we move to full device tree support this will vanish off.
*/ */
if (!pdev->dev.dma_mask) err = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
err = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
if (err) if (err)
return err; return err;
......
...@@ -81,9 +81,7 @@ static int spear_ehci_hcd_drv_probe(struct platform_device *pdev) ...@@ -81,9 +81,7 @@ static int spear_ehci_hcd_drv_probe(struct platform_device *pdev)
* Since shared usb code relies on it, set it here for now. * Since shared usb code relies on it, set it here for now.
* Once we have dma capability bindings this can go away. * Once we have dma capability bindings this can go away.
*/ */
if (!pdev->dev.dma_mask) retval = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
retval = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
if (retval) if (retval)
goto fail; goto fail;
......
...@@ -362,9 +362,7 @@ static int tegra_ehci_probe(struct platform_device *pdev) ...@@ -362,9 +362,7 @@ static int tegra_ehci_probe(struct platform_device *pdev)
* Since shared usb code relies on it, set it here for now. * Since shared usb code relies on it, set it here for now.
* Once we have dma capability bindings this can go away. * Once we have dma capability bindings this can go away.
*/ */
if (!pdev->dev.dma_mask) err = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
err = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
if (err) if (err)
return err; return err;
......
...@@ -536,9 +536,7 @@ static int ohci_at91_of_init(struct platform_device *pdev) ...@@ -536,9 +536,7 @@ static int ohci_at91_of_init(struct platform_device *pdev)
* Since shared usb code relies on it, set it here for now. * Since shared usb code relies on it, set it here for now.
* Once we have dma capability bindings this can go away. * Once we have dma capability bindings this can go away.
*/ */
if (!pdev->dev.dma_mask) ret = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
ret = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
if (ret) if (ret)
return ret; return ret;
......
...@@ -114,9 +114,7 @@ static int exynos_ohci_probe(struct platform_device *pdev) ...@@ -114,9 +114,7 @@ static int exynos_ohci_probe(struct platform_device *pdev)
* Since shared usb code relies on it, set it here for now. * Since shared usb code relies on it, set it here for now.
* Once we move to full device tree support this will vanish off. * Once we move to full device tree support this will vanish off.
*/ */
if (!pdev->dev.dma_mask) err = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
err = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
if (err) if (err)
return err; return err;
......
...@@ -226,8 +226,7 @@ static int usb_hcd_nxp_probe(struct platform_device *pdev) ...@@ -226,8 +226,7 @@ static int usb_hcd_nxp_probe(struct platform_device *pdev)
return -EPROBE_DEFER; return -EPROBE_DEFER;
} }
pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask; ret = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
ret = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
if (ret) if (ret)
goto fail_disable; goto fail_disable;
......
...@@ -127,8 +127,7 @@ static int ohci_octeon_drv_probe(struct platform_device *pdev) ...@@ -127,8 +127,7 @@ static int ohci_octeon_drv_probe(struct platform_device *pdev)
} }
/* Ohci is a 32-bit device. */ /* Ohci is a 32-bit device. */
pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask; ret = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
ret = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
if (ret) if (ret)
return ret; return ret;
......
...@@ -166,9 +166,7 @@ static int ohci_hcd_omap3_probe(struct platform_device *pdev) ...@@ -166,9 +166,7 @@ static int ohci_hcd_omap3_probe(struct platform_device *pdev)
* Since shared usb code relies on it, set it here for now. * Since shared usb code relies on it, set it here for now.
* Once we have dma capability bindings this can go away. * Once we have dma capability bindings this can go away.
*/ */
if (!dev->dma_mask) ret = dma_coerce_mask_and_coherent(dev, DMA_BIT_MASK(32));
dev->dma_mask = &dev->coherent_dma_mask;
ret = dma_set_coherent_mask(dev, DMA_BIT_MASK(32));
if (ret) if (ret)
goto err_io; goto err_io;
......
...@@ -296,9 +296,7 @@ static int ohci_pxa_of_init(struct platform_device *pdev) ...@@ -296,9 +296,7 @@ static int ohci_pxa_of_init(struct platform_device *pdev)
* Since shared usb code relies on it, set it here for now. * Since shared usb code relies on it, set it here for now.
* Once we have dma capability bindings this can go away. * Once we have dma capability bindings this can go away.
*/ */
if (!pdev->dev.dma_mask) ret = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
ret = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
if (ret) if (ret)
return ret; return ret;
......
...@@ -111,9 +111,7 @@ static int spear_ohci_hcd_drv_probe(struct platform_device *pdev) ...@@ -111,9 +111,7 @@ static int spear_ohci_hcd_drv_probe(struct platform_device *pdev)
* Since shared usb code relies on it, set it here for now. * Since shared usb code relies on it, set it here for now.
* Once we have dma capability bindings this can go away. * Once we have dma capability bindings this can go away.
*/ */
if (!pdev->dev.dma_mask) retval = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
retval = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
if (retval) if (retval)
goto fail; goto fail;
......
...@@ -75,9 +75,7 @@ static int uhci_hcd_platform_probe(struct platform_device *pdev) ...@@ -75,9 +75,7 @@ static int uhci_hcd_platform_probe(struct platform_device *pdev)
* Since shared usb code relies on it, set it here for now. * Since shared usb code relies on it, set it here for now.
* Once we have dma capability bindings this can go away. * Once we have dma capability bindings this can go away.
*/ */
if (!pdev->dev.dma_mask) ret = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
ret = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
if (ret) if (ret)
return ret; return ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment