]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
PCI: tegra: Use generic pci_remap_iospace() rather than ARM32-specific one
authorThierry Reding <treding@nvidia.com>
Mon, 25 Jul 2016 21:02:12 +0000 (16:02 -0500)
committerBjorn Helgaas <bhelgaas@google.com>
Mon, 25 Jul 2016 21:03:24 +0000 (16:03 -0500)
Use the pci_remap_iospace() function provided by the PCI core, rather
than the 32-bit ARM-specific pci_ioremap_io().

Signed-off-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
drivers/pci/host/pci-tegra.c

index 9595518f541d3d242acee74d681f08bfeb63ba73..f04b062e8c675bd7bfd0a0457ed373731889a098 100644 (file)
@@ -645,7 +645,7 @@ static int tegra_pcie_setup(int nr, struct pci_sys_data *sys)
                                sys->mem_offset);
        pci_add_resource(&sys->resources, &pcie->busn);
 
-       pci_ioremap_io(pcie->pio.start, pcie->io.start);
+       pci_remap_iospace(&pcie->pio, pcie->io.start);
 
        return 1;
 }