diff options
| -rw-r--r-- | arch/powerpc/platforms/powermac/pci.c | 6 | ||||
| -rw-r--r-- | arch/ppc/kernel/pci.c | 10 | ||||
| -rw-r--r-- | arch/ppc/platforms/chrp_pci.c | 2 | ||||
| -rw-r--r-- | arch/ppc/platforms/pmac_pci.c | 6 | ||||
| -rw-r--r-- | arch/ppc/syslib/m82xx_pci.c | 2 | ||||
| -rw-r--r-- | arch/ppc/syslib/mpc52xx_pci.c | 2 | ||||
| -rw-r--r-- | arch/ppc64/kernel/maple_pci.c | 2 | ||||
| -rw-r--r-- | arch/ppc64/kernel/pmac_pci.c | 2 | ||||
| -rw-r--r-- | include/asm-ppc/pci.h | 4 |
9 files changed, 18 insertions, 18 deletions
diff --git a/arch/powerpc/platforms/powermac/pci.c b/arch/powerpc/platforms/powermac/pci.c index afb147e6b89f..34dfe1e9706f 100644 --- a/arch/powerpc/platforms/powermac/pci.c +++ b/arch/powerpc/platforms/powermac/pci.c | |||
| @@ -608,7 +608,7 @@ static inline void grackle_set_loop_snoop(struct pci_controller *bp, int enable) | |||
| 608 | static int __init | 608 | static int __init |
| 609 | setup_uninorth(struct pci_controller* hose, struct reg_property* addr) | 609 | setup_uninorth(struct pci_controller* hose, struct reg_property* addr) |
| 610 | { | 610 | { |
| 611 | pci_assign_all_busses = 1; | 611 | pci_assign_all_buses = 1; |
| 612 | has_uninorth = 1; | 612 | has_uninorth = 1; |
| 613 | hose->ops = ¯isc_pci_ops; | 613 | hose->ops = ¯isc_pci_ops; |
| 614 | hose->cfg_addr = ioremap(addr->address + 0x800000, 0x1000); | 614 | hose->cfg_addr = ioremap(addr->address + 0x800000, 0x1000); |
| @@ -640,7 +640,7 @@ static void __init setup_u3_agp(struct pci_controller* hose) | |||
| 640 | { | 640 | { |
| 641 | /* On G5, we move AGP up to high bus number so we don't need | 641 | /* On G5, we move AGP up to high bus number so we don't need |
| 642 | * to reassign bus numbers for HT. If we ever have P2P bridges | 642 | * to reassign bus numbers for HT. If we ever have P2P bridges |
| 643 | * on AGP, we'll have to move pci_assign_all_busses to the | 643 | * on AGP, we'll have to move pci_assign_all_buses to the |
| 644 | * pci_controller structure so we enable it for AGP and not for | 644 | * pci_controller structure so we enable it for AGP and not for |
| 645 | * HT childs. | 645 | * HT childs. |
| 646 | * We hard code the address because of the different size of | 646 | * We hard code the address because of the different size of |
| @@ -1007,7 +1007,7 @@ void __init pmac_find_bridges(void) | |||
| 1007 | * some offset between bus number and domains for now when we | 1007 | * some offset between bus number and domains for now when we |
| 1008 | * assign all busses should help for now | 1008 | * assign all busses should help for now |
| 1009 | */ | 1009 | */ |
| 1010 | if (pci_assign_all_busses) | 1010 | if (pci_assign_all_buses) |
| 1011 | pcibios_assign_bus_offset = 0x10; | 1011 | pcibios_assign_bus_offset = 0x10; |
| 1012 | 1012 | ||
| 1013 | } | 1013 | } |
diff --git a/arch/ppc/kernel/pci.c b/arch/ppc/kernel/pci.c index 163276be7cc5..ad4ef2aaa6ab 100644 --- a/arch/ppc/kernel/pci.c +++ b/arch/ppc/kernel/pci.c | |||
| @@ -54,7 +54,7 @@ static u8* pci_to_OF_bus_map; | |||
| 54 | /* By default, we don't re-assign bus numbers. We do this only on | 54 | /* By default, we don't re-assign bus numbers. We do this only on |
| 55 | * some pmacs | 55 | * some pmacs |
| 56 | */ | 56 | */ |
| 57 | int pci_assign_all_busses; | 57 | int pci_assign_all_buses; |
| 58 | 58 | ||
| 59 | struct pci_controller* hose_head; | 59 | struct pci_controller* hose_head; |
| 60 | struct pci_controller** hose_tail = &hose_head; | 60 | struct pci_controller** hose_tail = &hose_head; |
| @@ -827,7 +827,7 @@ EXPORT_SYMBOL(pci_device_to_OF_node); | |||
| 827 | * PCI bus numbers have not yet been assigned, and you need to | 827 | * PCI bus numbers have not yet been assigned, and you need to |
| 828 | * issue PCI config cycles to an OF device. | 828 | * issue PCI config cycles to an OF device. |
| 829 | * It could also be used to "fix" RTAS config cycles if you want | 829 | * It could also be used to "fix" RTAS config cycles if you want |
| 830 | * to set pci_assign_all_busses to 1 and still use RTAS for PCI | 830 | * to set pci_assign_all_buses to 1 and still use RTAS for PCI |
| 831 | * config cycles. | 831 | * config cycles. |
| 832 | */ | 832 | */ |
| 833 | struct pci_controller* | 833 | struct pci_controller* |
| @@ -1270,12 +1270,12 @@ pcibios_init(void) | |||
| 1270 | 1270 | ||
| 1271 | /* Scan all of the recorded PCI controllers. */ | 1271 | /* Scan all of the recorded PCI controllers. */ |
| 1272 | for (next_busno = 0, hose = hose_head; hose; hose = hose->next) { | 1272 | for (next_busno = 0, hose = hose_head; hose; hose = hose->next) { |
| 1273 | if (pci_assign_all_busses) | 1273 | if (pci_assign_all_buses) |
| 1274 | hose->first_busno = next_busno; | 1274 | hose->first_busno = next_busno; |
| 1275 | hose->last_busno = 0xff; | 1275 | hose->last_busno = 0xff; |
| 1276 | bus = pci_scan_bus(hose->first_busno, hose->ops, hose); | 1276 | bus = pci_scan_bus(hose->first_busno, hose->ops, hose); |
| 1277 | hose->last_busno = bus->subordinate; | 1277 | hose->last_busno = bus->subordinate; |
| 1278 | if (pci_assign_all_busses || next_busno <= hose->last_busno) | 1278 | if (pci_assign_all_buses || next_busno <= hose->last_busno) |
| 1279 | next_busno = hose->last_busno + pcibios_assign_bus_offset; | 1279 | next_busno = hose->last_busno + pcibios_assign_bus_offset; |
| 1280 | } | 1280 | } |
| 1281 | pci_bus_count = next_busno; | 1281 | pci_bus_count = next_busno; |
| @@ -1284,7 +1284,7 @@ pcibios_init(void) | |||
| 1284 | * numbers vs. kernel bus numbers since we may have to | 1284 | * numbers vs. kernel bus numbers since we may have to |
| 1285 | * remap them. | 1285 | * remap them. |
| 1286 | */ | 1286 | */ |
| 1287 | if (pci_assign_all_busses && have_of) | 1287 | if (pci_assign_all_buses && have_of) |
| 1288 | pcibios_make_OF_bus_map(); | 1288 | pcibios_make_OF_bus_map(); |
| 1289 | 1289 | ||
| 1290 | /* Do machine dependent PCI interrupt routing */ | 1290 | /* Do machine dependent PCI interrupt routing */ |
diff --git a/arch/ppc/platforms/chrp_pci.c b/arch/ppc/platforms/chrp_pci.c index f12192cc4d42..bd047aac01b1 100644 --- a/arch/ppc/platforms/chrp_pci.c +++ b/arch/ppc/platforms/chrp_pci.c | |||
| @@ -203,7 +203,7 @@ static void __init setup_peg2(struct pci_controller *hose, struct device_node *d | |||
| 203 | printk ("RTAS supporting Pegasos OF not found, please upgrade" | 203 | printk ("RTAS supporting Pegasos OF not found, please upgrade" |
| 204 | " your firmware\n"); | 204 | " your firmware\n"); |
| 205 | } | 205 | } |
| 206 | pci_assign_all_busses = 1; | 206 | pci_assign_all_buses = 1; |
| 207 | } | 207 | } |
| 208 | 208 | ||
| 209 | void __init | 209 | void __init |
diff --git a/arch/ppc/platforms/pmac_pci.c b/arch/ppc/platforms/pmac_pci.c index 1dc638f72239..786295b6ddd0 100644 --- a/arch/ppc/platforms/pmac_pci.c +++ b/arch/ppc/platforms/pmac_pci.c | |||
| @@ -575,7 +575,7 @@ pmac_find_bridges(void) | |||
| 575 | * some offset between bus number and domains for now when we | 575 | * some offset between bus number and domains for now when we |
| 576 | * assign all busses should help for now | 576 | * assign all busses should help for now |
| 577 | */ | 577 | */ |
| 578 | if (pci_assign_all_busses) | 578 | if (pci_assign_all_buses) |
| 579 | pcibios_assign_bus_offset = 0x10; | 579 | pcibios_assign_bus_offset = 0x10; |
| 580 | 580 | ||
| 581 | #ifdef CONFIG_POWER4 | 581 | #ifdef CONFIG_POWER4 |
| @@ -643,7 +643,7 @@ static inline void grackle_set_loop_snoop(struct pci_controller *bp, int enable) | |||
| 643 | static int __init | 643 | static int __init |
| 644 | setup_uninorth(struct pci_controller* hose, struct reg_property* addr) | 644 | setup_uninorth(struct pci_controller* hose, struct reg_property* addr) |
| 645 | { | 645 | { |
| 646 | pci_assign_all_busses = 1; | 646 | pci_assign_all_buses = 1; |
| 647 | has_uninorth = 1; | 647 | has_uninorth = 1; |
| 648 | hose->ops = ¯isc_pci_ops; | 648 | hose->ops = ¯isc_pci_ops; |
| 649 | hose->cfg_addr = ioremap(addr->address + 0x800000, 0x1000); | 649 | hose->cfg_addr = ioremap(addr->address + 0x800000, 0x1000); |
| @@ -677,7 +677,7 @@ setup_u3_agp(struct pci_controller* hose, struct reg_property* addr) | |||
| 677 | { | 677 | { |
| 678 | /* On G5, we move AGP up to high bus number so we don't need | 678 | /* On G5, we move AGP up to high bus number so we don't need |
| 679 | * to reassign bus numbers for HT. If we ever have P2P bridges | 679 | * to reassign bus numbers for HT. If we ever have P2P bridges |
| 680 | * on AGP, we'll have to move pci_assign_all_busses to the | 680 | * on AGP, we'll have to move pci_assign_all_buses to the |
| 681 | * pci_controller structure so we enable it for AGP and not for | 681 | * pci_controller structure so we enable it for AGP and not for |
| 682 | * HT childs. | 682 | * HT childs. |
| 683 | * We hard code the address because of the different size of | 683 | * We hard code the address because of the different size of |
diff --git a/arch/ppc/syslib/m82xx_pci.c b/arch/ppc/syslib/m82xx_pci.c index 9db58c587b46..5cce123789f1 100644 --- a/arch/ppc/syslib/m82xx_pci.c +++ b/arch/ppc/syslib/m82xx_pci.c | |||
| @@ -302,7 +302,7 @@ pq2ads_setup_pci(struct pci_controller *hose) | |||
| 302 | 302 | ||
| 303 | void __init pq2_find_bridges(void) | 303 | void __init pq2_find_bridges(void) |
| 304 | { | 304 | { |
| 305 | extern int pci_assign_all_busses; | 305 | extern int pci_assign_all_buses; |
| 306 | struct pci_controller * hose; | 306 | struct pci_controller * hose; |
| 307 | int host_bridge; | 307 | int host_bridge; |
| 308 | 308 | ||
diff --git a/arch/ppc/syslib/mpc52xx_pci.c b/arch/ppc/syslib/mpc52xx_pci.c index 02edff8befd0..4ac19080eb85 100644 --- a/arch/ppc/syslib/mpc52xx_pci.c +++ b/arch/ppc/syslib/mpc52xx_pci.c | |||
| @@ -182,7 +182,7 @@ mpc52xx_find_bridges(void) | |||
| 182 | struct mpc52xx_pci __iomem *pci_regs; | 182 | struct mpc52xx_pci __iomem *pci_regs; |
| 183 | struct pci_controller *hose; | 183 | struct pci_controller *hose; |
| 184 | 184 | ||
| 185 | pci_assign_all_busses = 1; | 185 | pci_assign_all_buses = 1; |
| 186 | 186 | ||
| 187 | pci_regs = ioremap(MPC52xx_PA(MPC52xx_PCI_OFFSET), MPC52xx_PCI_SIZE); | 187 | pci_regs = ioremap(MPC52xx_PA(MPC52xx_PCI_OFFSET), MPC52xx_PCI_SIZE); |
| 188 | if (!pci_regs) | 188 | if (!pci_regs) |
diff --git a/arch/ppc64/kernel/maple_pci.c b/arch/ppc64/kernel/maple_pci.c index 0937649f4961..b901470f55cc 100644 --- a/arch/ppc64/kernel/maple_pci.c +++ b/arch/ppc64/kernel/maple_pci.c | |||
| @@ -275,7 +275,7 @@ static void __init setup_u3_agp(struct pci_controller* hose) | |||
| 275 | { | 275 | { |
| 276 | /* On G5, we move AGP up to high bus number so we don't need | 276 | /* On G5, we move AGP up to high bus number so we don't need |
| 277 | * to reassign bus numbers for HT. If we ever have P2P bridges | 277 | * to reassign bus numbers for HT. If we ever have P2P bridges |
| 278 | * on AGP, we'll have to move pci_assign_all_busses to the | 278 | * on AGP, we'll have to move pci_assign_all_buses to the |
| 279 | * pci_controller structure so we enable it for AGP and not for | 279 | * pci_controller structure so we enable it for AGP and not for |
| 280 | * HT childs. | 280 | * HT childs. |
| 281 | * We hard code the address because of the different size of | 281 | * We hard code the address because of the different size of |
diff --git a/arch/ppc64/kernel/pmac_pci.c b/arch/ppc64/kernel/pmac_pci.c index f139fc034199..7a81c8275940 100644 --- a/arch/ppc64/kernel/pmac_pci.c +++ b/arch/ppc64/kernel/pmac_pci.c | |||
| @@ -381,7 +381,7 @@ static void __init setup_u3_agp(struct pci_controller* hose) | |||
| 381 | { | 381 | { |
| 382 | /* On G5, we move AGP up to high bus number so we don't need | 382 | /* On G5, we move AGP up to high bus number so we don't need |
| 383 | * to reassign bus numbers for HT. If we ever have P2P bridges | 383 | * to reassign bus numbers for HT. If we ever have P2P bridges |
| 384 | * on AGP, we'll have to move pci_assign_all_busses to the | 384 | * on AGP, we'll have to move pci_assign_all_buses to the |
| 385 | * pci_controller structure so we enable it for AGP and not for | 385 | * pci_controller structure so we enable it for AGP and not for |
| 386 | * HT childs. | 386 | * HT childs. |
| 387 | * We hard code the address because of the different size of | 387 | * We hard code the address because of the different size of |
diff --git a/include/asm-ppc/pci.h b/include/asm-ppc/pci.h index 9dd06cd40096..643740dd727b 100644 --- a/include/asm-ppc/pci.h +++ b/include/asm-ppc/pci.h | |||
| @@ -24,9 +24,9 @@ struct pci_dev; | |||
| 24 | * Set this to 1 if you want the kernel to re-assign all PCI | 24 | * Set this to 1 if you want the kernel to re-assign all PCI |
| 25 | * bus numbers | 25 | * bus numbers |
| 26 | */ | 26 | */ |
| 27 | extern int pci_assign_all_busses; | 27 | extern int pci_assign_all_buses; |
| 28 | 28 | ||
| 29 | #define pcibios_assign_all_busses() (pci_assign_all_busses) | 29 | #define pcibios_assign_all_busses() (pci_assign_all_buses) |
| 30 | #define pcibios_scan_all_fns(a, b) 0 | 30 | #define pcibios_scan_all_fns(a, b) 0 |
| 31 | 31 | ||
| 32 | #define PCIBIOS_MIN_IO 0x1000 | 32 | #define PCIBIOS_MIN_IO 0x1000 |
