diff options
author | Daniel Axtens <dja@axtens.net> | 2015-04-13 20:16:47 -0400 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2015-04-14 03:14:22 -0400 |
commit | ff7a2adac50873aaba71759779505693806adcc1 (patch) | |
tree | 5e9a98452c6d069334015b79de443eae0bd12725 /arch/powerpc/platforms | |
parent | 4acd09b4bfd4a653fcf02e422890d98764c0f1ff (diff) |
powerpc: Remove PPC32 code from pseries specific find_and_init_phbs()
In bdc728a849a7 ("powerpc: move find_and_init_phbs() to pSeries
specific code"), find_and_init_phbs() was moved into a pseries
specific file, but PPC32 code wasn't removed. Remove it.
See https://lkml.kernel.org/r/552C0AA6.4010403@fau.de
Reported-by: Andreas Ruprecht <andreas.ruprecht@fau.de>
Fixes: bdc728a849a7
Signed-off-by: Daniel Axtens <dja@axtens.net>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/platforms')
-rw-r--r-- | arch/powerpc/platforms/pseries/setup.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/arch/powerpc/platforms/pseries/setup.c b/arch/powerpc/platforms/pseries/setup.c index 1044b8b4da71..df6a7041922b 100644 --- a/arch/powerpc/platforms/pseries/setup.c +++ b/arch/powerpc/platforms/pseries/setup.c | |||
@@ -499,13 +499,6 @@ static void __init find_and_init_phbs(void) | |||
499 | else | 499 | else |
500 | pci_clear_flags(PCI_PROBE_ONLY); | 500 | pci_clear_flags(PCI_PROBE_ONLY); |
501 | } | 501 | } |
502 | |||
503 | #ifdef CONFIG_PPC32 /* Will be made generic soon */ | ||
504 | prop = of_get_property(of_chosen, | ||
505 | "linux,pci-assign-all-buses", NULL); | ||
506 | if (prop && *prop) | ||
507 | pci_add_flags(PCI_REASSIGN_ALL_BUS); | ||
508 | #endif /* CONFIG_PPC32 */ | ||
509 | } | 502 | } |
510 | } | 503 | } |
511 | 504 | ||