Message ID | 1412221837-17452-19-git-send-email-matt@masarand.com (mailing list archive) |
---|---|
State | New, archived |
Delegated to: | Bjorn Helgaas |
Headers | show |
diff --git a/arch/s390/pci/pci.c b/arch/s390/pci/pci.c index 2fa7b14..720592f 100644 --- a/arch/s390/pci/pci.c +++ b/arch/s390/pci/pci.c @@ -434,6 +434,13 @@ out: return rc; } +int pcibios_root_bridge_prepare(struct pci_host_bridge *bridge) +{ + bridge->swizzle_irq = NULL; + bridge->map_irq = NULL; + return 0; +} + void arch_teardown_msi_irqs(struct pci_dev *pdev) { struct zpci_dev *zdev = get_zdev(pdev);
From: Matthew Minter <matt@masarand.com> Most of the architectures are switched to allocating IRQs at device_enable time instead of boot time, however s390 does not provide an easy way of making that transition so the new code is disabled here on s390. --- arch/s390/pci/pci.c | 7 +++++++ 1 file changed, 7 insertions(+)