diff options
author | Patrick Delaunay <patrick.delaunay@st.com> | 2020-07-03 17:36:44 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-09-08 08:46:32 -0400 |
commit | fc8ead1a0af42be784f75917231752c6c74cf15f (patch) | |
tree | 6003c1ab747a39d7347ca4f714e70ed0158cbc90 /drivers/ata | |
parent | 890fc370a9c922fbf529b2dc2ee48da3da4704ff (diff) | |
download | u-boot-fc8ead1a0af42be784f75917231752c6c74cf15f.tar.gz u-boot-fc8ead1a0af42be784f75917231752c6c74cf15f.tar.bz2 u-boot-fc8ead1a0af42be784f75917231752c6c74cf15f.zip |
ata: dwc-ahci: change trace level for phy errors managed by uclass
As the error message is now displayed by generic phy functions,
the pr_err can be change to pr_debug.
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/dwc_ahci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ata/dwc_ahci.c b/drivers/ata/dwc_ahci.c index 825fe57f85..ed0527c976 100644 --- a/drivers/ata/dwc_ahci.c +++ b/drivers/ata/dwc_ahci.c @@ -62,13 +62,13 @@ static int dwc_ahci_probe(struct udevice *dev) ret = generic_phy_init(&phy); if (ret) { - pr_err("unable to initialize the sata phy\n"); + pr_debug("unable to initialize the sata phy\n"); return ret; } ret = generic_phy_power_on(&phy); if (ret) { - pr_err("unable to power on the sata phy\n"); + pr_debug("unable to power on the sata phy\n"); return ret; } |