diff options
Diffstat (limited to 'arch/powerpc/platforms/maple/pci.c')
-rw-r--r-- | arch/powerpc/platforms/maple/pci.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/maple/pci.c b/arch/powerpc/platforms/maple/pci.c index d3a13067ec42..a923230e575b 100644 --- a/arch/powerpc/platforms/maple/pci.c +++ b/arch/powerpc/platforms/maple/pci.c | |||
@@ -510,6 +510,7 @@ static int __init maple_add_bridge(struct device_node *dev) | |||
510 | return -ENOMEM; | 510 | return -ENOMEM; |
511 | hose->first_busno = bus_range ? bus_range[0] : 0; | 511 | hose->first_busno = bus_range ? bus_range[0] : 0; |
512 | hose->last_busno = bus_range ? bus_range[1] : 0xff; | 512 | hose->last_busno = bus_range ? bus_range[1] : 0xff; |
513 | hose->controller_ops = maple_pci_controller_ops; | ||
513 | 514 | ||
514 | disp_name = NULL; | 515 | disp_name = NULL; |
515 | if (of_device_is_compatible(dev, "u3-agp")) { | 516 | if (of_device_is_compatible(dev, "u3-agp")) { |
@@ -660,3 +661,6 @@ static void quirk_ipr_msi(struct pci_dev *dev) | |||
660 | } | 661 | } |
661 | DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN, | 662 | DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN, |
662 | quirk_ipr_msi); | 663 | quirk_ipr_msi); |
664 | |||
665 | struct pci_controller_ops maple_pci_controller_ops = { | ||
666 | }; | ||