Lines Matching refs:dwc3
55 struct platform_device *dwc3; member
199 struct platform_device *dwc3 = dwc->dwc3; in dwc3_pci_resume_work() local
202 ret = pm_runtime_get_sync(&dwc3->dev); in dwc3_pci_resume_work()
206 pm_runtime_mark_last_busy(&dwc3->dev); in dwc3_pci_resume_work()
207 pm_runtime_put_sync_autosuspend(&dwc3->dev); in dwc3_pci_resume_work()
231 dwc->dwc3 = platform_device_alloc("dwc3", PLATFORM_DEVID_AUTO); in dwc3_pci_probe()
232 if (!dwc->dwc3) in dwc3_pci_probe()
246 ret = platform_device_add_resources(dwc->dwc3, res, ARRAY_SIZE(res)); in dwc3_pci_probe()
253 dwc->dwc3->dev.parent = dev; in dwc3_pci_probe()
254 ACPI_COMPANION_SET(&dwc->dwc3->dev, ACPI_COMPANION(dev)); in dwc3_pci_probe()
256 ret = platform_device_add_properties(dwc->dwc3, p); in dwc3_pci_probe()
264 ret = platform_device_add(dwc->dwc3); in dwc3_pci_probe()
279 platform_device_put(dwc->dwc3); in dwc3_pci_probe()
293 platform_device_unregister(dwc->dwc3); in dwc3_pci_remove()