Searched defs:old_slot (Results 1 - 2 of 2) sorted by relevance

/drivers/pci/hotplug/
H A Dcpqphp_core.c296 struct slot *old_slot, *next_slot; local
298 old_slot = ctrl->slot;
301 while (old_slot) {
303 next_slot = old_slot->next;
304 pci_hp_deregister (old_slot->hotplug_slot);
305 old_slot = next_slot;
H A Dcpqphp_ctrl.c995 * @old_slot: slot to remove
999 static int slot_remove(struct pci_func * old_slot) argument
1003 if (old_slot == NULL)
1006 next = cpqhp_slot_list[old_slot->bus];
1010 if (next == old_slot) {
1011 cpqhp_slot_list[old_slot->bus] = old_slot->next;
1012 cpqhp_destroy_board_resources(old_slot);
1013 kfree(old_slot);
1017 while ((next->next != old_slot)
[all...]

Completed in 86 milliseconds