Lines Matching refs:bdc
30 struct platform_device *bdc; member
49 struct platform_device *bdc; in bdc_pci_probe() local
65 bdc = platform_device_alloc(BRCM_BDC_NAME, PLATFORM_DEVID_AUTO); in bdc_pci_probe()
66 if (!bdc) in bdc_pci_probe()
81 ret = platform_device_add_resources(bdc, res, ARRAY_SIZE(res)); in bdc_pci_probe()
90 dma_set_coherent_mask(&bdc->dev, pci->dev.coherent_dma_mask); in bdc_pci_probe()
92 bdc->dev.dma_mask = pci->dev.dma_mask; in bdc_pci_probe()
93 bdc->dev.dma_parms = pci->dev.dma_parms; in bdc_pci_probe()
94 bdc->dev.parent = &pci->dev; in bdc_pci_probe()
95 glue->bdc = bdc; in bdc_pci_probe()
97 ret = platform_device_add(bdc); in bdc_pci_probe()
100 platform_device_put(bdc); in bdc_pci_probe()
111 platform_device_unregister(glue->bdc); in bdc_pci_remove()