@@ -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;
};
@@ -109,7 +109,6 @@ static int hisi_pcie_link_up_hip05(struct hisi_pcie *hisi)
regmap_read(hisi->subctrl, PCIE_SUBCTRL_SYS_STATE4_REG +
0x100 * hisi->port_id, &val);
-
return ((val & PCIE_LTSSM_STATE_MASK) == PCIE_LTSSM_LINKUP_STATE);
}
@@ -178,13 +177,13 @@ static int hisi_pcie_probe(struct platform_device *pdev)
pp = &hisi->pp;
pp->dev = &pdev->dev;
- driver = (pdev->dev).driver;
+ driver = (pdev->dev).driver;
match = of_match_device(driver->of_match_table, &pdev->dev);
hisi->soc_ops = (struct pcie_soc_ops *) match->data;
hisi->subctrl =
- syscon_regmap_lookup_by_compatible("hisilicon,pcie-sas-subctrl");
+ syscon_regmap_lookup_by_compatible("hisilicon,pcie-sas-subctrl");
if (IS_ERR(hisi->subctrl)) {
dev_err(pp->dev, "cannot get subctrl base\n");
return PTR_ERR(hisi->subctrl);
Reorder struct hisi_pcie to put generic fields first. No functional change intended. Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> --- drivers/pci/host/pcie-hisi.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html