Lines Matching defs:pci_slot
3 * pci_slot.c - ACPI PCI Slot Driver
34 struct pci_slot *pci_slot; /* corresponding pci_slot */
90 struct pci_slot *pci_slot;
102 pci_slot = slot->pci_slot;
103 if (pci_slot->bus == pci_bus && pci_slot->number == device)
112 pci_slot = pci_create_slot(pci_bus, device, name, NULL);
113 if (IS_ERR(pci_slot)) {
114 pr_err("pci_create_slot returned %ld\n", PTR_ERR(pci_slot));
119 slot->pci_slot = pci_slot;
125 pci_slot, pci_bus->number, device, name);
148 if (slot->pci_slot->bus == bus) {
150 pci_destroy_slot(slot->pci_slot);