Commit 795e79df authored by Fabio Estevam's avatar Fabio Estevam Committed by Lorenzo Pieralisi

PCI: keystone: Do not treat link up message as error

The "Link already up" message does not indicate any error, so
change it to dev_info() level instead.
Signed-off-by: default avatarFabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: default avatarLorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Acked-by: default avatarMurali Karicheri <m-karicheri2@ti.com>
parent 60cc43fc
...@@ -89,7 +89,7 @@ static int ks_pcie_establish_link(struct keystone_pcie *ks_pcie) ...@@ -89,7 +89,7 @@ static int ks_pcie_establish_link(struct keystone_pcie *ks_pcie)
dw_pcie_setup_rc(pp); dw_pcie_setup_rc(pp);
if (dw_pcie_link_up(pci)) { if (dw_pcie_link_up(pci)) {
dev_err(dev, "Link already up\n"); dev_info(dev, "Link already up\n");
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment