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

/linux-master/drivers/pci/hotplug/
H A Dcpqphp_pci.c705 struct pci_resource *io_node; local
748 io_node = kmalloc(sizeof(*io_node), GFP_KERNEL);
749 if (!io_node)
752 io_node->base = (b_base & 0xF0) << 8;
753 io_node->length = (b_length - b_base + 0x10) << 8;
755 io_node->next = func->io_head;
756 func->io_head = io_node;
811 io_node = kmalloc(sizeof(*io_node),
1182 struct pci_resource *io_node; local
[all...]
H A Dcpqphp_nvram.c429 struct pci_resource *io_node; local
563 io_node = kmalloc(sizeof(struct pci_resource), GFP_KERNEL);
565 if (!io_node)
568 io_node->base = *(u32 *)p_byte;
569 dbg("io base = %8.8x\n", io_node->base);
573 kfree(io_node);
577 io_node->length = *(u32 *)p_byte;
578 dbg("io length = %8.8x\n", io_node->length);
582 kfree(io_node);
586 io_node
[all...]
H A Dcpqphp_ctrl.c2325 struct pci_resource *io_node; local
2390 io_node = get_max_resource(&(resources->io_head), 0x1000);
2391 if (!io_node)
2400 dbg("io_node\n");
2401 dbg("(base, len, next) (%x, %x, %p)\n", io_node->base,
2402 io_node->length, io_node->next);
2430 temp_resources.io_head = io_node;
2460 memcpy(hold_IO_node, io_node, sizeof(struct pci_resource));
2461 io_node
[all...]

Completed in 230 milliseconds