Lines Matching defs:slot
50 pr_debug("Checking slot on path: %s\n", (char *)buffer.pointer);
66 /* No _SUN == not a slot == bail */
81 * Check whether handle has an associated slot and create PCI slot if it has.
89 struct acpi_pci_slot *slot;
98 * There may be multiple PCI functions associated with the same slot.
99 * Check whether PCI slot has already been created for this PCI device.
101 list_for_each_entry(slot, &slot_list, list) {
102 pci_slot = slot->pci_slot;
107 slot = kmalloc(sizeof(*slot), GFP_KERNEL);
108 if (!slot)
115 kfree(slot);
119 slot->pci_slot = pci_slot;
120 list_add(&slot->list, &slot_list);
144 struct acpi_pci_slot *slot, *tmp;
147 list_for_each_entry_safe(slot, tmp, &slot_list, list) {
148 if (slot->pci_slot->bus == bus) {
149 list_del(&slot->list);
150 pci_destroy_slot(slot->pci_slot);
152 kfree(slot);