Lines Matching refs:bdc
25 struct platform_device *bdc; member
44 struct platform_device *bdc; in bdc_pci_probe() local
60 bdc = platform_device_alloc(BRCM_BDC_NAME, PLATFORM_DEVID_AUTO); in bdc_pci_probe()
61 if (!bdc) in bdc_pci_probe()
76 ret = platform_device_add_resources(bdc, res, ARRAY_SIZE(res)); in bdc_pci_probe()
80 platform_device_put(bdc); in bdc_pci_probe()
86 dma_set_coherent_mask(&bdc->dev, pci->dev.coherent_dma_mask); in bdc_pci_probe()
88 bdc->dev.dma_mask = pci->dev.dma_mask; in bdc_pci_probe()
89 bdc->dev.dma_parms = pci->dev.dma_parms; in bdc_pci_probe()
90 bdc->dev.parent = &pci->dev; in bdc_pci_probe()
91 glue->bdc = bdc; in bdc_pci_probe()
93 ret = platform_device_add(bdc); in bdc_pci_probe()
96 platform_device_put(bdc); in bdc_pci_probe()
107 platform_device_unregister(glue->bdc); in bdc_pci_remove()