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

Commit 3d469939 authored by Bjorn Helgaas's avatar Bjorn Helgaas
Browse files

PCI: designware: Uninline register accessors



The register accessors are not performance critical and small enough that
the compiler can inline them itself if it makes sense.

Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
parent 8ad75019
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -157,14 +157,14 @@ void dw_pcie_writel_rc(struct pcie_port *pp, u32 reg, u32 val)
		writel(val, pp->dbi_base + reg);
}

static inline u32 dw_pcie_readl_unroll(struct pcie_port *pp, u32 index, u32 reg)
static u32 dw_pcie_readl_unroll(struct pcie_port *pp, u32 index, u32 reg)
{
	u32 offset = PCIE_GET_ATU_OUTB_UNR_REG_OFFSET(index);

	return dw_pcie_readl_rc(pp, offset + reg);
}

static inline void dw_pcie_writel_unroll(struct pcie_port *pp, u32 index,
static void dw_pcie_writel_unroll(struct pcie_port *pp, u32 index,
					 u32 val, u32 reg)
{
	u32 offset = PCIE_GET_ATU_OUTB_UNR_REG_OFFSET(index);