Lines Matching full:dwc2
59 static const char dwc2_driver_name[] = "dwc2-pci";
62 struct platform_device *dwc2; member
76 platform_device_unregister(glue->dwc2); in dwc2_pci_remove()
85 struct platform_device *dwc2; in dwc2_pci_probe() local
106 dwc2 = platform_device_alloc("dwc2", PLATFORM_DEVID_AUTO); in dwc2_pci_probe()
107 if (!dwc2) { in dwc2_pci_probe()
108 dev_err(dev, "couldn't allocate dwc2 device\n"); in dwc2_pci_probe()
117 res[0].name = "dwc2"; in dwc2_pci_probe()
121 res[1].name = "dwc2"; in dwc2_pci_probe()
124 ret = platform_device_add_resources(dwc2, res, ARRAY_SIZE(res)); in dwc2_pci_probe()
126 dev_err(dev, "couldn't add resources to dwc2 device\n"); in dwc2_pci_probe()
130 dwc2->dev.parent = dev; in dwc2_pci_probe()
138 ret = platform_device_add(dwc2); in dwc2_pci_probe()
140 dev_err(dev, "failed to register dwc2 device\n"); in dwc2_pci_probe()
145 glue->dwc2 = dwc2; in dwc2_pci_probe()
151 platform_device_put(dwc2); in dwc2_pci_probe()