Commit 43f25adf authored by Bjorn Helgaas's avatar Bjorn Helgaas

Merge branch 'pci/controller/artpec6'

- Correct the artpec6_pcie_cpu_addr_fixup() parameter name, which takes a
  CPU address but called it "pci_addr" (Niklas Cassel)

* pci/controller/artpec6:
  PCI: artpec6: Fix artpec6_pcie_cpu_addr_fixup() parameter name
parents e38de94e 7903ffa4
...@@ -94,7 +94,7 @@ static void artpec6_pcie_writel(struct artpec6_pcie *artpec6_pcie, u32 offset, u ...@@ -94,7 +94,7 @@ static void artpec6_pcie_writel(struct artpec6_pcie *artpec6_pcie, u32 offset, u
regmap_write(artpec6_pcie->regmap, offset, val); regmap_write(artpec6_pcie->regmap, offset, val);
} }
static u64 artpec6_pcie_cpu_addr_fixup(struct dw_pcie *pci, u64 pci_addr) static u64 artpec6_pcie_cpu_addr_fixup(struct dw_pcie *pci, u64 cpu_addr)
{ {
struct artpec6_pcie *artpec6_pcie = to_artpec6_pcie(pci); struct artpec6_pcie *artpec6_pcie = to_artpec6_pcie(pci);
struct dw_pcie_rp *pp = &pci->pp; struct dw_pcie_rp *pp = &pci->pp;
...@@ -102,13 +102,13 @@ static u64 artpec6_pcie_cpu_addr_fixup(struct dw_pcie *pci, u64 pci_addr) ...@@ -102,13 +102,13 @@ static u64 artpec6_pcie_cpu_addr_fixup(struct dw_pcie *pci, u64 pci_addr)
switch (artpec6_pcie->mode) { switch (artpec6_pcie->mode) {
case DW_PCIE_RC_TYPE: case DW_PCIE_RC_TYPE:
return pci_addr - pp->cfg0_base; return cpu_addr - pp->cfg0_base;
case DW_PCIE_EP_TYPE: case DW_PCIE_EP_TYPE:
return pci_addr - ep->phys_base; return cpu_addr - ep->phys_base;
default: default:
dev_err(pci->dev, "UNKNOWN device type\n"); dev_err(pci->dev, "UNKNOWN device type\n");
} }
return pci_addr; return cpu_addr;
} }
static int artpec6_pcie_establish_link(struct dw_pcie *pci) static int artpec6_pcie_establish_link(struct dw_pcie *pci)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment