diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2007-03-04 01:07:38 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-03-08 23:03:26 -0500 |
commit | 36241ce695f16193d0f76ea010f212119da37071 (patch) | |
tree | 8c67b3324fe65170d239b8b0d9003f5ce5f94ccd /arch | |
parent | 0a7c7efccc08f00ae6fc8e1f2de0ee61f07357fd (diff) |
[POWERPC] Make find_and_init_pbs() a void function
It always returned 0 and noone checked.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/kernel/rtas_pci.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/powerpc/kernel/rtas_pci.c b/arch/powerpc/kernel/rtas_pci.c index ace9f4c86e67..1616a44ac608 100644 --- a/arch/powerpc/kernel/rtas_pci.c +++ b/arch/powerpc/kernel/rtas_pci.c | |||
@@ -274,7 +274,7 @@ int __devinit rtas_setup_phb(struct pci_controller *phb) | |||
274 | return 0; | 274 | return 0; |
275 | } | 275 | } |
276 | 276 | ||
277 | unsigned long __init find_and_init_phbs(void) | 277 | void __init find_and_init_phbs(void) |
278 | { | 278 | { |
279 | struct device_node *node; | 279 | struct device_node *node; |
280 | struct pci_controller *phb; | 280 | struct pci_controller *phb; |
@@ -319,8 +319,6 @@ unsigned long __init find_and_init_phbs(void) | |||
319 | if (prop) | 319 | if (prop) |
320 | pci_assign_all_buses = *prop; | 320 | pci_assign_all_buses = *prop; |
321 | } | 321 | } |
322 | |||
323 | return 0; | ||
324 | } | 322 | } |
325 | 323 | ||
326 | /* RPA-specific bits for removing PHBs */ | 324 | /* RPA-specific bits for removing PHBs */ |