pci-common.c (db985cbd67c45f875ef43cb5febfaa8cbd203c27) pci-common.c (e51df2c170efaeadce4d416e1825b0830de0a795)
1/*
2 * Contains common pci routines for ALL ppc platform
3 * (based on pci_32.c and pci_64.c)
4 *
5 * Port for PPC64 David Engebretsen, IBM Corp.
6 * Contains common pci routines for ppc64 platform, pSeries and iSeries brands.
7 *
8 * Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM

--- 1126 unchanged lines hidden (view full) ---

1135 * if they weren't, they won't disturb allocation of other
1136 * resources.
1137 * (4) Assign new addresses to resources which were either
1138 * not configured at all or misconfigured. If explicitly
1139 * requested by the user, configure expansion ROM address
1140 * as well.
1141 */
1142
1/*
2 * Contains common pci routines for ALL ppc platform
3 * (based on pci_32.c and pci_64.c)
4 *
5 * Port for PPC64 David Engebretsen, IBM Corp.
6 * Contains common pci routines for ppc64 platform, pSeries and iSeries brands.
7 *
8 * Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM

--- 1126 unchanged lines hidden (view full) ---

1135 * if they weren't, they won't disturb allocation of other
1136 * resources.
1137 * (4) Assign new addresses to resources which were either
1138 * not configured at all or misconfigured. If explicitly
1139 * requested by the user, configure expansion ROM address
1140 * as well.
1141 */
1142
1143void pcibios_allocate_bus_resources(struct pci_bus *bus)
1143static void pcibios_allocate_bus_resources(struct pci_bus *bus)
1144{
1145 struct pci_bus *b;
1146 int i;
1147 struct resource *res, *pr;
1148
1149 pr_debug("PCI: Allocating bus resources for %04x:%02x...\n",
1150 pci_domain_nr(bus), bus->number);
1151

--- 521 unchanged lines hidden ---
1144{
1145 struct pci_bus *b;
1146 int i;
1147 struct resource *res, *pr;
1148
1149 pr_debug("PCI: Allocating bus resources for %04x:%02x...\n",
1150 pci_domain_nr(bus), bus->number);
1151

--- 521 unchanged lines hidden ---