usb: dwc3: core: only setting the dma_mask when needed
authorHeikki Krogerus <heikki.krogerus@linux.intel.com>
Wed, 24 Sep 2014 08:00:38 +0000 (11:00 +0300)
committerFelipe Balbi <balbi@ti.com>
Mon, 3 Nov 2014 16:00:53 +0000 (10:00 -0600)
If the probe drivers have already set the dma_mask, not
replacing the value.

Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/dwc3/core.c

index ddfe7718e4a32c62084c45d59d14a3fe0c6fe93b..13843004815c6b1f110419da28ee14bef7178fb4 100644 (file)
@@ -715,9 +715,11 @@ static int dwc3_probe(struct platform_device *pdev)
        spin_lock_init(&dwc->lock);
        platform_set_drvdata(pdev, dwc);
 
-       dev->dma_mask   = dev->parent->dma_mask;
-       dev->dma_parms  = dev->parent->dma_parms;
-       dma_set_coherent_mask(dev, dev->parent->coherent_dma_mask);
+       if (!dev->dma_mask) {
+               dev->dma_mask = dev->parent->dma_mask;
+               dev->dma_parms = dev->parent->dma_parms;
+               dma_set_coherent_mask(dev, dev->parent->coherent_dma_mask);
+       }
 
        pm_runtime_enable(dev);
        pm_runtime_get_sync(dev);