mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
PCI: dra7xx: Reorder struct dra7xx_pcie
Reorder struct dra7xx_pcie to put generic fields first. No functional change intended. Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
This commit is contained in:
parent
150645b943
commit
8e5ec4143d
1 changed files with 3 additions and 3 deletions
|
@ -64,10 +64,10 @@
|
||||||
#define DRA7XX_CPU_TO_BUS_ADDR 0x0FFFFFFF
|
#define DRA7XX_CPU_TO_BUS_ADDR 0x0FFFFFFF
|
||||||
|
|
||||||
struct dra7xx_pcie {
|
struct dra7xx_pcie {
|
||||||
void __iomem *base;
|
|
||||||
struct phy **phy;
|
|
||||||
int phy_count;
|
|
||||||
struct pcie_port pp;
|
struct pcie_port pp;
|
||||||
|
void __iomem *base; /* DT ti_conf */
|
||||||
|
int phy_count; /* DT phy-names count */
|
||||||
|
struct phy **phy;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define to_dra7xx_pcie(x) container_of((x), struct dra7xx_pcie, pp)
|
#define to_dra7xx_pcie(x) container_of((x), struct dra7xx_pcie, pp)
|
||||||
|
|
Loading…
Add table
Reference in a new issue