Browse Source

PCI: layerscape: Use dw_pcie_link_up() consistently

All the other DesignWare-based drivers use dw_pcie_link_up(), so use it in
this driver, too, for consistency.  No functional change.

Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Pratyush Anand <pratyush.anand@gmail.com>
Bjorn Helgaas 10 years ago
parent
commit
1200edcbdd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/pci/host/pci-layerscape.c

+ 1 - 1
drivers/pci/host/pci-layerscape.c

@@ -70,7 +70,7 @@ static void ls_pcie_host_init(struct pcie_port *pp)
 
 
 	dw_pcie_setup_rc(pp);
 	dw_pcie_setup_rc(pp);
 
 
-	while (!ls_pcie_link_up(pp)) {
+	while (!dw_pcie_link_up(pp)) {
 		usleep_range(100, 1000);
 		usleep_range(100, 1000);
 		count++;
 		count++;
 		if (count >= 200) {
 		if (count >= 200) {