Searched defs:io_node (Results 1 - 3 of 3) sorted by relevance

/drivers/pci/hotplug/
H A Dcpqphp_nvram.c449 struct pci_resource *io_node; local
583 io_node = kmalloc(sizeof(struct pci_resource), GFP_KERNEL);
585 if (!io_node)
588 io_node->base = *(u32*)p_byte;
589 dbg("io base = %8.8x\n",io_node->base);
593 kfree(io_node);
597 io_node->length = *(u32*)p_byte;
598 dbg("io length = %8.8x\n",io_node->length);
602 kfree(io_node);
606 io_node
[all...]
H A Dcpqphp_pci.c701 struct pci_resource *io_node; local
744 io_node = kmalloc(sizeof(*io_node), GFP_KERNEL);
745 if (!io_node)
748 io_node->base = (b_base & 0xF0) << 8;
749 io_node->length = (b_length - b_base + 0x10) << 8;
751 io_node->next = func->io_head;
752 func->io_head = io_node;
807 io_node = kmalloc(sizeof(*io_node),
1178 struct pci_resource *io_node; local
[all...]
H A Dcpqphp_ctrl.c2388 struct pci_resource *io_node; local
2453 io_node = get_max_resource(&(resources->io_head), 0x1000);
2454 if (!io_node)
2463 dbg("io_node\n");
2464 dbg("(base, len, next) (%x, %x, %p)\n", io_node->base,
2465 io_node->length, io_node->next);
2493 temp_resources.io_head = io_node;
2523 if (io_node) {
2524 memcpy(hold_IO_node, io_node, sizeo
[all...]

Completed in 62 milliseconds