aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/ohci-spear.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/usb/host/ohci-spear.c')
-rw-r--r--drivers/usb/host/ohci-spear.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/usb/host/ohci-spear.c b/drivers/usb/host/ohci-spear.c
index 195a0a121107..075bb5e9b43f 100644
--- a/drivers/usb/host/ohci-spear.c
+++ b/drivers/usb/host/ohci-spear.c
@@ -111,9 +111,7 @@ static int spear_ohci_hcd_drv_probe(struct platform_device *pdev)
111 * Since shared usb code relies on it, set it here for now. 111 * Since shared usb code relies on it, set it here for now.
112 * Once we have dma capability bindings this can go away. 112 * Once we have dma capability bindings this can go away.
113 */ 113 */
114 if (!pdev->dev.dma_mask) 114 retval = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
115 pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
116 retval = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
117 if (retval) 115 if (retval)
118 goto fail; 116 goto fail;
119 117