Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6ab38095 authored by Lorenzo Pieralisi's avatar Lorenzo Pieralisi Committed by Bjorn Helgaas
Browse files

PCI: altera: Drop pci_fixup_irqs()



Since, through struct pci_host_bridge.map/swizzle_irq hooks, IRQs are now
allocated in the pci_assign_irq() callback automatically, PCI host bridge
drivers can stop relying on pci_fixup_irqs() for IRQ allocation.

Drop pci_fixup_irqs() usage from PCI altera host bridge driver.

Signed-off-by: default avatarLorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
Cc: Ley Foon Tan <lftan@altera.com>
parent cf60374d
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -620,6 +620,8 @@ static int altera_pcie_probe(struct platform_device *pdev)
	bridge->sysdata = pcie;
	bridge->sysdata = pcie;
	bridge->busnr = pcie->root_bus_nr;
	bridge->busnr = pcie->root_bus_nr;
	bridge->ops = &altera_pcie_ops;
	bridge->ops = &altera_pcie_ops;
	bridge->map_irq = of_irq_parse_and_map_pci;
	bridge->swizzle_irq = pci_common_swizzle;


	ret = pci_scan_root_bus_bridge(bridge);
	ret = pci_scan_root_bus_bridge(bridge);
	if (ret < 0)
	if (ret < 0)
@@ -627,8 +629,6 @@ static int altera_pcie_probe(struct platform_device *pdev)


	bus = bridge->bus;
	bus = bridge->bus;


	pci_fixup_irqs(pci_common_swizzle, of_irq_parse_and_map_pci);

	pci_assign_unassigned_bus_resources(bus);
	pci_assign_unassigned_bus_resources(bus);


	/* Configure PCI Express setting. */
	/* Configure PCI Express setting. */