diff options
author | Robert Richter <robert.richter@amd.com> | 2008-07-02 16:50:29 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-09 05:45:03 -0400 |
commit | 8dd779b19ce5972072ad2372a86c8acbae4da768 (patch) | |
tree | 4f594473f7aa2f10a5af4d724a8ac06ca96925cf /arch/x86/pci/common.c | |
parent | ae28d70529b874f657afd0f70ca148599345ba2a (diff) |
x86/pci: removing subsys_initcall ordering dependencies
So far subsys_initcalls has been executed in this order depending on
the object order in the Makefile:
arch/x86/pci/visws.c:subsys_initcall(pcibios_init);
arch/x86/pci/numa.c:subsys_initcall(pci_numa_init);
arch/x86/pci/acpi.c:subsys_initcall(pci_acpi_init);
arch/x86/pci/legacy.c:subsys_initcall(pci_legacy_init);
arch/x86/pci/irq.c:subsys_initcall(pcibios_irq_init);
arch/x86/pci/common.c:subsys_initcall(pcibios_init);
This patch removes the ordering dependency. There is now only one
subsys_initcall function that contains subsystem initialization code
with a defined order.
Signed-off-by: Robert Richter <robert.richter@amd.com>
Acked-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/pci/common.c')
-rw-r--r-- | arch/x86/pci/common.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/x86/pci/common.c b/arch/x86/pci/common.c index 6e64aaf00d1d..20b9f59f95df 100644 --- a/arch/x86/pci/common.c +++ b/arch/x86/pci/common.c | |||
@@ -384,7 +384,7 @@ struct pci_bus * __devinit pcibios_scan_root(int busnum) | |||
384 | 384 | ||
385 | extern u8 pci_cache_line_size; | 385 | extern u8 pci_cache_line_size; |
386 | 386 | ||
387 | static int __init pcibios_init(void) | 387 | int __init pcibios_init(void) |
388 | { | 388 | { |
389 | struct cpuinfo_x86 *c = &boot_cpu_data; | 389 | struct cpuinfo_x86 *c = &boot_cpu_data; |
390 | 390 | ||
@@ -411,8 +411,6 @@ static int __init pcibios_init(void) | |||
411 | return 0; | 411 | return 0; |
412 | } | 412 | } |
413 | 413 | ||
414 | subsys_initcall(pcibios_init); | ||
415 | |||
416 | char * __devinit pcibios_setup(char *str) | 414 | char * __devinit pcibios_setup(char *str) |
417 | { | 415 | { |
418 | if (!strcmp(str, "off")) { | 416 | if (!strcmp(str, "off")) { |