diff options
Diffstat (limited to 'drivers/usb/dwc3/dwc3-exynos.c')
-rw-r--r-- | drivers/usb/dwc3/dwc3-exynos.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/usb/dwc3/dwc3-exynos.c b/drivers/usb/dwc3/dwc3-exynos.c index 8ce9d7fd6cfc..a179c5a54b39 100644 --- a/drivers/usb/dwc3/dwc3-exynos.c +++ b/drivers/usb/dwc3/dwc3-exynos.c | |||
@@ -20,7 +20,7 @@ | |||
20 | #include <linux/dma-mapping.h> | 20 | #include <linux/dma-mapping.h> |
21 | #include <linux/clk.h> | 21 | #include <linux/clk.h> |
22 | #include <linux/usb/otg.h> | 22 | #include <linux/usb/otg.h> |
23 | #include <linux/usb/nop-usb-xceiv.h> | 23 | #include <linux/usb/usb_phy_gen_xceiv.h> |
24 | #include <linux/of.h> | 24 | #include <linux/of.h> |
25 | #include <linux/of_platform.h> | 25 | #include <linux/of_platform.h> |
26 | 26 | ||
@@ -34,13 +34,13 @@ struct dwc3_exynos { | |||
34 | 34 | ||
35 | static int dwc3_exynos_register_phys(struct dwc3_exynos *exynos) | 35 | static int dwc3_exynos_register_phys(struct dwc3_exynos *exynos) |
36 | { | 36 | { |
37 | struct nop_usb_xceiv_platform_data pdata; | 37 | struct usb_phy_gen_xceiv_platform_data pdata; |
38 | struct platform_device *pdev; | 38 | struct platform_device *pdev; |
39 | int ret; | 39 | int ret; |
40 | 40 | ||
41 | memset(&pdata, 0x00, sizeof(pdata)); | 41 | memset(&pdata, 0x00, sizeof(pdata)); |
42 | 42 | ||
43 | pdev = platform_device_alloc("nop_usb_xceiv", PLATFORM_DEVID_AUTO); | 43 | pdev = platform_device_alloc("usb_phy_gen_xceiv", PLATFORM_DEVID_AUTO); |
44 | if (!pdev) | 44 | if (!pdev) |
45 | return -ENOMEM; | 45 | return -ENOMEM; |
46 | 46 | ||
@@ -51,7 +51,7 @@ static int dwc3_exynos_register_phys(struct dwc3_exynos *exynos) | |||
51 | if (ret) | 51 | if (ret) |
52 | goto err1; | 52 | goto err1; |
53 | 53 | ||
54 | pdev = platform_device_alloc("nop_usb_xceiv", PLATFORM_DEVID_AUTO); | 54 | pdev = platform_device_alloc("usb_phy_gen_xceiv", PLATFORM_DEVID_AUTO); |
55 | if (!pdev) { | 55 | if (!pdev) { |
56 | ret = -ENOMEM; | 56 | ret = -ENOMEM; |
57 | goto err1; | 57 | goto err1; |