diff options
-rw-r--r-- | arch/powerpc/platforms/85xx/mpc85xx_cds.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/85xx/mpc85xx_cds.c b/arch/powerpc/platforms/85xx/mpc85xx_cds.c index 9b559ebc66f8..71200bdce05a 100644 --- a/arch/powerpc/platforms/85xx/mpc85xx_cds.c +++ b/arch/powerpc/platforms/85xx/mpc85xx_cds.c | |||
@@ -108,6 +108,16 @@ static void __init mpc85xx_cds_pci_irq_fixup(struct pci_dev *dev) | |||
108 | } | 108 | } |
109 | } | 109 | } |
110 | 110 | ||
111 | static void __devinit skip_fake_bridge(struct pci_dev *dev) | ||
112 | { | ||
113 | /* Make it an error to skip the fake bridge | ||
114 | * in pci_setup_device() in probe.c */ | ||
115 | dev->hdr_type = 0x7f; | ||
116 | } | ||
117 | DECLARE_PCI_FIXUP_EARLY(0x1957, 0x3fff, skip_fake_bridge); | ||
118 | DECLARE_PCI_FIXUP_EARLY(0x3fff, 0x1957, skip_fake_bridge); | ||
119 | DECLARE_PCI_FIXUP_EARLY(0xff3f, 0x5719, skip_fake_bridge); | ||
120 | |||
111 | #ifdef CONFIG_PPC_I8259 | 121 | #ifdef CONFIG_PPC_I8259 |
112 | #warning The i8259 PIC support is currently broken | 122 | #warning The i8259 PIC support is currently broken |
113 | static void mpc85xx_8259_cascade(unsigned int irq, struct irq_desc *desc) | 123 | static void mpc85xx_8259_cascade(unsigned int irq, struct irq_desc *desc) |