Lines Matching defs:io_node
703 struct pci_resource *io_node;
746 io_node = kmalloc(sizeof(*io_node), GFP_KERNEL);
747 if (!io_node)
750 io_node->base = (b_base & 0xF0) << 8;
751 io_node->length = (b_length - b_base + 0x10) << 8;
753 io_node->next = func->io_head;
754 func->io_head = io_node;
809 io_node = kmalloc(sizeof(*io_node),
811 if (!io_node)
814 io_node->base =
816 io_node->length = temp_register;
818 io_node->next = func->io_head;
819 func->io_head = io_node;
881 io_node = kmalloc(sizeof(*io_node),
883 if (!io_node)
886 io_node->base = save_base & (~0x01L);
887 io_node->length = temp_register;
889 io_node->next = func->io_head;
890 func->io_head = io_node;
1180 struct pci_resource *io_node;
1303 io_node = kmalloc(sizeof(*io_node), GFP_KERNEL);
1304 if (!io_node)
1307 io_node->base = io_base;
1308 io_node->length = io_length;
1310 dbg("found io_node(base, length) = %x, %x\n",
1311 io_node->base, io_node->length);
1314 io_node->next = ctrl->io_head;
1315 ctrl->io_head = io_node;
1317 io_node->next = func->io_head;
1318 func->io_head = io_node;