tag | line | file | source code |
mem_startp | 668 | drivers/pci/pci.c | static void *pci_malloc(long size, unsigned long *mem_startp) |
mem_startp | 673 | drivers/pci/pci.c | printk("...pci_malloc(size=%ld,mem=%p)", size, *mem_startp); |
mem_startp | 675 | drivers/pci/pci.c | mem = (void*) *mem_startp; |
mem_startp | 676 | drivers/pci/pci.c | *mem_startp += (size + sizeof(void*) - 1) & ~(sizeof(void*) - 1); |
mem_startp | 682 | drivers/pci/pci.c | static unsigned int scan_bus(struct pci_bus *bus, unsigned long *mem_startp) |
mem_startp | 691 | drivers/pci/pci.c | printk("...scan_bus(busno=%d,mem=%p)\n", bus->number, *mem_startp); |
mem_startp | 712 | drivers/pci/pci.c | dev = pci_malloc(sizeof(*dev), mem_startp); |
mem_startp | 777 | drivers/pci/pci.c | child = pci_malloc(sizeof(*child), mem_startp); |
mem_startp | 814 | drivers/pci/pci.c | max = scan_bus(child, mem_startp); |