arch/arm64/pci.c pcibios_alloc_irq() has the same function as pci_fixup_irqs(), so we add condition #ifndef CONFIG_ARM64 for pci_fixup_irqs(). Signed-off-by: Dongdong Liu <liudongdong3@xxxxxxxxxx> Reviewed-by: Gabriele Paoloni <gabriele.paoloni@xxxxxxxxxx> Reviewed-by: Zhou Wang <wangzhou1@xxxxxxxxxxxxx> --- drivers/pci/host/pci-host-common.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/pci/host/pci-host-common.c b/drivers/pci/host/pci-host-common.c index e3c48b5..f160afc 100644 --- a/drivers/pci/host/pci-host-common.c +++ b/drivers/pci/host/pci-host-common.c @@ -145,7 +145,9 @@ int pci_host_common_probe(struct platform_device *pdev, return -ENODEV; } +#ifndef CONFIG_ARM64 pci_fixup_irqs(pci_common_swizzle, of_irq_parse_and_map_pci); +#endif /* * We insert PCI resources into the iomem_resource and -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html