From: Bjorn Helgaas Date: Tue, 2 Jun 2015 21:21:11 +0000 (-0500) Subject: PCI: dra7xx: Use dw_pcie_link_up() consistently X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=30fb7ba6605671e575b6a7a2e69fe153d6d20141;p=linux-beck.git PCI: dra7xx: Use dw_pcie_link_up() consistently We already use dw_pcie_link_up() once in dra7xx_pcie_establish_link(), but we duplicate its code later. Use dw_pcie_link_up() for consistency. No functional change. Signed-off-by: Bjorn Helgaas Acked-by: Kishon Vijay Abraham I Acked-by: Pratyush Anand --- diff --git a/drivers/pci/host/pci-dra7xx.c b/drivers/pci/host/pci-dra7xx.c index 2d57e19a2cd4..e3d15d7875c2 100644 --- a/drivers/pci/host/pci-dra7xx.c +++ b/drivers/pci/host/pci-dra7xx.c @@ -107,8 +107,7 @@ static int dra7xx_pcie_establish_link(struct pcie_port *pp) dra7xx_pcie_writel(dra7xx, PCIECTRL_DRA7XX_CONF_DEVICE_CMD, reg); while (retries--) { - reg = dra7xx_pcie_readl(dra7xx, PCIECTRL_DRA7XX_CONF_PHY_CS); - if (reg & LINK_UP) + if (dw_pcie_link_up(pp)) break; usleep_range(10, 20); }