diff options
author | Heikki Krogerus <[email protected]> | 2015-05-13 15:26:45 +0300 |
---|---|---|
committer | Felipe Balbi <[email protected]> | 2015-05-13 12:05:56 -0500 |
commit | 6c89cce0476f309689549c74717445e624e0de04 (patch) | |
tree | 68a92ddfb4f942ad739eb7eb9e75d7c5db6127ad | |
parent | f699b94789a64bec66e45c2dc39f06ae1208d852 (diff) |
usb: dwc3: store driver data earlier
We need to store it before phys are handled, so we can later
use it in ULPI interface support code.
Signed-off-by: Heikki Krogerus <[email protected]>
Acked-by: David Cohen <[email protected]>
Signed-off-by: Felipe Balbi <[email protected]>
-rw-r--r-- | drivers/usb/dwc3/core.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c index 2bbab3d86fff..c7734edd40f8 100644 --- a/drivers/usb/dwc3/core.c +++ b/drivers/usb/dwc3/core.c @@ -875,12 +875,13 @@ static int dwc3_probe(struct platform_device *pdev) dwc->hird_threshold = hird_threshold | (dwc->is_utmi_l1_suspend << 4); + platform_set_drvdata(pdev, dwc); + ret = dwc3_core_get_phy(dwc); if (ret) goto err0; spin_lock_init(&dwc->lock); - platform_set_drvdata(pdev, dwc); if (!dev->dma_mask) { dev->dma_mask = dev->parent->dma_mask; |