2023-05-10 07:55:39

by Stanley Chang[昌育德]

[permalink] [raw]
Subject: [PATCH v1] usb: xhci: plat: remove error log for failure to get usb-phy

Remove this log to avoid non-error conditions.
If CONFIG_USB_PHY is disabled, the following error message appears:
[ 0.231609] xhci-hcd f10f0000.usb3: xhci_plat_probe get usb3phy fail (ret=-6)
[ 0.239716] xhci-hcd f10f8000.usb3: xhci_plat_probe get usb3phy fail (ret=-6)
In this case, devm_usb_get_phy_by_phandle is declared static inline
and returns -ENXIO.

It is easy to pinpoint the failure to get the usb-phy using the debug
log in drivers/usb/phy/phy.c. Therefore, it can be removed.

Signed-off-by: Stanley Chang <[email protected]>
---
drivers/usb/host/xhci-plat.c | 4 ----
1 file changed, 4 deletions(-)

diff --git a/drivers/usb/host/xhci-plat.c b/drivers/usb/host/xhci-plat.c
index b0c8e8efc43b..6a45ee431945 100644
--- a/drivers/usb/host/xhci-plat.c
+++ b/drivers/usb/host/xhci-plat.c
@@ -294,10 +294,6 @@ int xhci_plat_probe(struct platform_device *pdev, struct device *sysdev, const s
xhci->shared_hcd->usb_phy = devm_usb_get_phy_by_phandle(sysdev,
"usb-phy", 1);
if (IS_ERR(xhci->shared_hcd->usb_phy)) {
- if (PTR_ERR(xhci->shared_hcd->usb_phy) != -ENODEV)
- dev_err(sysdev, "%s get usb3phy fail (ret=%d)\n",
- __func__,
- (int)PTR_ERR(xhci->shared_hcd->usb_phy));
xhci->shared_hcd->usb_phy = NULL;
} else {
ret = usb_phy_init(xhci->shared_hcd->usb_phy);
--
2.34.1



2023-05-10 18:06:03

by Klaus Kudielka

[permalink] [raw]
Subject: Re: [PATCH v1] usb: xhci: plat: remove error log for failure to get usb-phy

On Wed, 2023-05-10 at 15:51 +0800, Stanley Chang wrote:
> Remove this log to avoid non-error conditions.
> If CONFIG_USB_PHY is disabled, the following error message appears:
> [    0.231609] xhci-hcd f10f0000.usb3: xhci_plat_probe get usb3phy fail (ret=-6)
> [    0.239716] xhci-hcd f10f8000.usb3: xhci_plat_probe get usb3phy fail (ret=-6)
> In this case, devm_usb_get_phy_by_phandle is declared static inline
> and returns -ENXIO.
>
> It is easy to pinpoint the failure to get the usb-phy using the debug
> log in drivers/usb/phy/phy.c. Therefore, it can be removed.
>
> Signed-off-by: Stanley Chang <[email protected]>

Thanks, the false positives are now gone for those without CONFIG_USB_PHY.

Tested-by: Klaus Kudielka <[email protected]>


2023-05-23 13:11:12

by Johan Hovold

[permalink] [raw]
Subject: Re: [PATCH v1] usb: xhci: plat: remove error log for failure to get usb-phy

On Wed, May 10, 2023 at 03:51:29PM +0800, Stanley Chang wrote:
> Remove this log to avoid non-error conditions.
> If CONFIG_USB_PHY is disabled, the following error message appears:
> [ 0.231609] xhci-hcd f10f0000.usb3: xhci_plat_probe get usb3phy fail (ret=-6)
> [ 0.239716] xhci-hcd f10f8000.usb3: xhci_plat_probe get usb3phy fail (ret=-6)
> In this case, devm_usb_get_phy_by_phandle is declared static inline
> and returns -ENXIO.
>
> It is easy to pinpoint the failure to get the usb-phy using the debug
> log in drivers/usb/phy/phy.c. Therefore, it can be removed.
>
> Signed-off-by: Stanley Chang <[email protected]>

This one fixes the annoying bogus error messages that started showing up
in 6.4-rc on the Lenovo X13s and other machines not using the legacy PHY
drivers:

Fixes: 9134c1fd0503 ("usb: xhci: plat: Add USB 3.0 phy support")
Reviewed-by: Johan Hovold <[email protected]>
Tested-by: Johan Hovold <[email protected]>

Greg, I noticed you applied this one for 6.5; any chance we could get
this fixed already in 6.4 which has the offending commit?

> ---
> drivers/usb/host/xhci-plat.c | 4 ----
> 1 file changed, 4 deletions(-)
>
> diff --git a/drivers/usb/host/xhci-plat.c b/drivers/usb/host/xhci-plat.c
> index b0c8e8efc43b..6a45ee431945 100644
> --- a/drivers/usb/host/xhci-plat.c
> +++ b/drivers/usb/host/xhci-plat.c
> @@ -294,10 +294,6 @@ int xhci_plat_probe(struct platform_device *pdev, struct device *sysdev, const s
> xhci->shared_hcd->usb_phy = devm_usb_get_phy_by_phandle(sysdev,
> "usb-phy", 1);
> if (IS_ERR(xhci->shared_hcd->usb_phy)) {
> - if (PTR_ERR(xhci->shared_hcd->usb_phy) != -ENODEV)
> - dev_err(sysdev, "%s get usb3phy fail (ret=%d)\n",
> - __func__,
> - (int)PTR_ERR(xhci->shared_hcd->usb_phy));
> xhci->shared_hcd->usb_phy = NULL;
> } else {
> ret = usb_phy_init(xhci->shared_hcd->usb_phy);

Johan