Skip to content

Commit

Permalink
PCI: dra7xx: Reorder struct dra7xx_pcie
Browse files Browse the repository at this point in the history
Reorder struct dra7xx_pcie to put generic fields first.  No functional
change intended.

Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
  • Loading branch information
Bjorn Helgaas committed Oct 12, 2016
1 parent 150645b commit 8e5ec41
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/pci/host/pci-dra7xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@
#define DRA7XX_CPU_TO_BUS_ADDR 0x0FFFFFFF

struct dra7xx_pcie {
void __iomem *base;
struct phy **phy;
int phy_count;
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)
Expand Down

0 comments on commit 8e5ec41

Please sign in to comment.