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

Commit 6b1f185a authored by Bjorn Helgaas's avatar Bjorn Helgaas
Browse files

PCI: exynos: Reorder struct exynos_pcie



Reorder struct exynos_pcie to put generic fields first.  No functional
change intended.

Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
parent cc08e82b
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -29,13 +29,13 @@
#define to_exynos_pcie(x)	container_of(x, struct exynos_pcie, pp)

struct exynos_pcie {
	void __iomem		*elbi_base;
	void __iomem		*phy_base;
	void __iomem		*block_base;
	struct pcie_port	pp;
	void __iomem		*elbi_base;	/* DT 0th resource */
	void __iomem		*phy_base;	/* DT 1st resource */
	void __iomem		*block_base;	/* DT 2nd resource */
	int			reset_gpio;
	struct clk		*clk;
	struct clk		*bus_clk;
	struct pcie_port	pp;
};

/* PCIe ELBI registers */