diff options
author | Robert Richter <robert.richter@amd.com> | 2008-07-10 18:58:25 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-10 19:14:44 +0200 |
commit | 3a62ed73ccb76b3d573c2ceb52ee01081fa89f3d (patch) | |
tree | 6f5ed6826e065716e6ee0460a35dd52c2a670fd0 /arch/x86 | |
parent | 3f68f7d945e37e4d4bf1da445a285c59a6185815 (diff) |
x86/pci: fix warnings in subsys_initcall functions
Signed-off-by: Robert Richter <robert.richter@amd.com>
Cc: Robert Richter <robert.richter@amd.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/pci/legacy.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/pci/legacy.c b/arch/x86/pci/legacy.c index d8b6e928590..132876cc6fc 100644 --- a/arch/x86/pci/legacy.c +++ b/arch/x86/pci/legacy.c @@ -66,5 +66,7 @@ int __init pci_subsys_init(void) pci_numa_init(); #endif pcibios_init(); + + return 0; } subsys_initcall(pci_subsys_init); |