Skip to content

Commit

Permalink
PCI: rcar: Remove rcar_pcie_setup_window() resource argument
Browse files Browse the repository at this point in the history
rcar_pcie_setup_window() took both the window number and the resource,
which was redundant because we can look up the resource from the window
number.

Remove the "res" argument.

Signed-off-by: Phil Edworthy <phil.edworthy@renesas.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Simon Horman <horms+renesas@verge.net.au>
  • Loading branch information
Phil Edworthy authored and Bjorn Helgaas committed Jul 5, 2014
1 parent b771884 commit 0549252
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions drivers/pci/host/pcie-rcar.c
Original file line number Diff line number Diff line change
Expand Up @@ -317,9 +317,10 @@ static struct pci_ops rcar_pcie_ops = {
.write = rcar_pcie_write_conf,
};

static void rcar_pcie_setup_window(int win, struct resource *res,
struct rcar_pcie *pcie)
static void rcar_pcie_setup_window(int win, struct rcar_pcie *pcie)
{
struct resource *res = &pcie->res[win];

/* Setup PCIe address space mappings for each resource */
resource_size_t size;
u32 mask;
Expand Down Expand Up @@ -360,7 +361,7 @@ static int rcar_pcie_setup(int nr, struct pci_sys_data *sys)
if (!res->flags)
continue;

rcar_pcie_setup_window(i, res, pcie);
rcar_pcie_setup_window(i, pcie);

if (res->flags & IORESOURCE_IO)
pci_ioremap_io(nr * SZ_64K, res->start);
Expand Down

0 comments on commit 0549252

Please sign in to comment.