diff options
author | Leigh Brown <leigh@solinno.co.uk> | 2005-04-16 18:24:26 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:24:26 -0400 |
commit | b625a2b85221821b6831a387ee23ff7d93ffb7d1 (patch) | |
tree | 76becda481719bf1544dedd9563efd4de3329678 | |
parent | ef2f3253f061cbb86da25411a6e6e6a69a84b6ac (diff) |
[PATCH] ppc32: Make the Powerstack II Pro4000 boot again
This patch restores the original behaviour of prep_pcibios_fixup() to only
call prep_pib_init() on machines with an openpic. This allows the
Powerstack II Pro4000 to boot again.
Signed-off-by: Leigh Brown <leigh@solinno.co.uk>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | arch/ppc/platforms/prep_pci.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/arch/ppc/platforms/prep_pci.c b/arch/ppc/platforms/prep_pci.c index 8cd80eb447bd..4760cb64251d 100644 --- a/arch/ppc/platforms/prep_pci.c +++ b/arch/ppc/platforms/prep_pci.c | |||
@@ -1245,8 +1245,13 @@ prep_pcibios_fixup(void) | |||
1245 | pci_write_config_byte(dev, PCI_INTERRUPT_LINE, dev->irq); | 1245 | pci_write_config_byte(dev, PCI_INTERRUPT_LINE, dev->irq); |
1246 | } | 1246 | } |
1247 | 1247 | ||
1248 | /* Setup the Winbond or Via PIB */ | 1248 | /* Setup the Winbond or Via PIB - prep_pib_init() is coded for |
1249 | prep_pib_init(); | 1249 | * the non-openpic case, but it breaks (at least) the Utah |
1250 | * (Powerstack II Pro4000), so only call it if we have an | ||
1251 | * openpic. | ||
1252 | */ | ||
1253 | if (have_openpic) | ||
1254 | prep_pib_init(); | ||
1250 | } | 1255 | } |
1251 | 1256 | ||
1252 | static void __init | 1257 | static void __init |