aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjorn Helgaas <bhelgaas@google.com>2016-10-06 13:34:24 -0500
committerBjorn Helgaas <bhelgaas@google.com>2016-10-12 00:08:32 -0500
commitf84cfdf72109ce2af9bc903748e71f9af6ea4f46 (patch)
treeaf78aec40bbf8dd6d68e7ef1369ab50487f9c3e4
parente9480b5a7f3449f75eedb595bec25cd10a1f43f2 (diff)
downloadmmc-f84cfdf72109ce2af9bc903748e71f9af6ea4f46.tar.gz
PCI: hisi: Reorder struct hisi_pcie
Reorder struct hisi_pcie to put generic fields first. No functional change intended. Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
-rw-r--r--drivers/pci/host/pcie-hisi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/host/pcie-hisi.c b/drivers/pci/host/pcie-hisi.c
index bfff66650fae02..56154c25980c6d 100644
--- a/drivers/pci/host/pcie-hisi.c
+++ b/drivers/pci/host/pcie-hisi.c
@@ -37,9 +37,9 @@ struct pcie_soc_ops {
};
struct hisi_pcie {
+ struct pcie_port pp; /* pp.dbi_base is DT rc_dbi */
struct regmap *subctrl;
u32 port_id;
- struct pcie_port pp;
struct pcie_soc_ops *soc_ops;
};