Lines Matching refs:dwc
39 struct dwc3_haps *dwc; in dwc3_haps_probe() local
52 dwc = devm_kzalloc(dev, sizeof(*dwc), GFP_KERNEL); in dwc3_haps_probe()
53 if (!dwc) in dwc3_haps_probe()
56 dwc->dwc3 = platform_device_alloc("dwc3", PLATFORM_DEVID_AUTO); in dwc3_haps_probe()
57 if (!dwc->dwc3) in dwc3_haps_probe()
71 ret = platform_device_add_resources(dwc->dwc3, res, ARRAY_SIZE(res)); in dwc3_haps_probe()
77 dwc->pci = pci; in dwc3_haps_probe()
78 dwc->dwc3->dev.parent = dev; in dwc3_haps_probe()
80 ret = platform_device_add_properties(dwc->dwc3, initial_properties); in dwc3_haps_probe()
84 ret = platform_device_add(dwc->dwc3); in dwc3_haps_probe()
90 pci_set_drvdata(pci, dwc); in dwc3_haps_probe()
94 platform_device_put(dwc->dwc3); in dwc3_haps_probe()
100 struct dwc3_haps *dwc = pci_get_drvdata(pci); in dwc3_haps_remove() local
102 platform_device_unregister(dwc->dwc3); in dwc3_haps_remove()