PCI: layerscape: Reorder struct ls_pcie

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

Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
This commit is contained in:
Bjorn Helgaas 2016-10-06 13:38:05 -05:00
parent 4726a8231e
commit 6caaa28d92
1 changed files with 1 additions and 1 deletions

View File

@ -45,9 +45,9 @@ struct ls_pcie_drvdata {
};
struct ls_pcie {
struct pcie_port pp; /* pp.dbi_base is DT regs */
void __iomem *lut;
struct regmap *scfg;
struct pcie_port pp;
const struct ls_pcie_drvdata *drvdata;
int index;
};