diff options
author | Bartosz Wawrzyniak <[email protected]> | 2024-10-18 11:30:43 +0000 |
---|---|---|
committer | Krzysztof Wilczyński <[email protected]> | 2024-11-13 17:25:15 +0000 |
commit | e3e309b2bea8d2c37ed6f52c837848b601d3245e (patch) | |
tree | 4ef59dd301766e4d8d1ad3228c5d93bda1682a78 | |
parent | 9852d85ec9d492ebef56dc5f229416c925758edc (diff) |
PCI: cadence: Lower severity of message when phy-names property is absent in DTS
The "phy-names" property is optional, so the message indicating its
absence during the probe should be of "info" severity rather than
"error" severity.
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Bartosz Wawrzyniak <[email protected]>
[kwilczynski: update log messages wording, commit log]
Signed-off-by: Krzysztof Wilczyński <[email protected]>
-rw-r--r-- | drivers/pci/controller/cadence/pcie-cadence.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pci/controller/cadence/pcie-cadence.c b/drivers/pci/controller/cadence/pcie-cadence.c index 4251fac5e310..204e045aed8c 100644 --- a/drivers/pci/controller/cadence/pcie-cadence.c +++ b/drivers/pci/controller/cadence/pcie-cadence.c @@ -197,7 +197,7 @@ int cdns_pcie_init_phy(struct device *dev, struct cdns_pcie *pcie) phy_count = of_property_count_strings(np, "phy-names"); if (phy_count < 1) { - dev_err(dev, "no phy-names. PHY will not be initialized\n"); + dev_info(dev, "no \"phy-names\" property found; PHY will not be initialized\n"); pcie->phy_count = 0; return 0; } @@ -260,7 +260,7 @@ static int cdns_pcie_resume_noirq(struct device *dev) ret = cdns_pcie_enable_phy(pcie); if (ret) { - dev_err(dev, "failed to enable phy\n"); + dev_err(dev, "failed to enable PHY\n"); return ret; } |