Lines Matching refs:pacc
11 * **pacc : if a valid pci_dev is returned
12 * *pacc must be passed to pci_acc_cleanup to free it
26 struct pci_dev *pci_acc_init(struct pci_access **pacc, int domain, int bus,
32 *pacc = pci_alloc();
33 if (*pacc == NULL)
36 pci_filter_init(*pacc, &filter_nb_link);
44 pci_init(*pacc);
45 pci_scan_bus(*pacc);
47 for (device = (*pacc)->devices; device; device = device->next) {
51 pci_cleanup(*pacc);
57 struct pci_dev *pci_slot_func_init(struct pci_access **pacc, int slot,
60 return pci_acc_init(pacc, 0, 0, slot, func, -1, -1);