All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 1/1] usb: typec: ucsi: Don't warn on probe deferral
@ 2022-09-27 13:45 Wayne Chang
  2022-09-28  6:23 ` Heikki Krogerus
  0 siblings, 1 reply; 2+ messages in thread
From: Wayne Chang @ 2022-09-27 13:45 UTC (permalink / raw)
  To: heikki.krogerus, gregkh
  Cc: quic_linyyuan, quic_jackp, saranya.gopal, tiwai, linux-usb,
	linux-kernel, waynec

Deferred probe is an expected return value for fwnode_usb_role_switch_get().
Given that the driver deals with it properly, there's no need to output a
warning that may potentially confuse users.

Signed-off-by: Wayne Chang <waynec@nvidia.com>
--
V2 -> V3: remove the Fixes and Cc
V1 -> V2: adjust the coding style for better reading format.
 drivers/usb/typec/ucsi/ucsi.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/drivers/usb/typec/ucsi/ucsi.c b/drivers/usb/typec/ucsi/ucsi.c
index 7f2624f42724..e961ebecd7df 100644
--- a/drivers/usb/typec/ucsi/ucsi.c
+++ b/drivers/usb/typec/ucsi/ucsi.c
@@ -1069,11 +1069,9 @@ static int ucsi_register_port(struct ucsi *ucsi, int index)
 
 	cap->fwnode = ucsi_find_fwnode(con);
 	con->usb_role_sw = fwnode_usb_role_switch_get(cap->fwnode);
-	if (IS_ERR(con->usb_role_sw)) {
-		dev_err(ucsi->dev, "con%d: failed to get usb role switch\n",
-			con->num);
-		return PTR_ERR(con->usb_role_sw);
-	}
+	if (IS_ERR(con->usb_role_sw))
+		return dev_err_probe(ucsi->dev, PTR_ERR(con->usb_role_sw),
+			"con%d: failed to get usb role switch\n", con->num);
 
 	/* Delay other interactions with the con until registration is complete */
 	mutex_lock(&con->lock);
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v3 1/1] usb: typec: ucsi: Don't warn on probe deferral
  2022-09-27 13:45 [PATCH v3 1/1] usb: typec: ucsi: Don't warn on probe deferral Wayne Chang
@ 2022-09-28  6:23 ` Heikki Krogerus
  0 siblings, 0 replies; 2+ messages in thread
From: Heikki Krogerus @ 2022-09-28  6:23 UTC (permalink / raw)
  To: Wayne Chang
  Cc: gregkh, quic_linyyuan, quic_jackp, saranya.gopal, tiwai,
	linux-usb, linux-kernel

On Tue, Sep 27, 2022 at 09:45:12PM +0800, Wayne Chang wrote:
> Deferred probe is an expected return value for fwnode_usb_role_switch_get().
> Given that the driver deals with it properly, there's no need to output a
> warning that may potentially confuse users.
> 
> Signed-off-by: Wayne Chang <waynec@nvidia.com>

Acked-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>

> --
> V2 -> V3: remove the Fixes and Cc
> V1 -> V2: adjust the coding style for better reading format.
>  drivers/usb/typec/ucsi/ucsi.c | 8 +++-----
>  1 file changed, 3 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/usb/typec/ucsi/ucsi.c b/drivers/usb/typec/ucsi/ucsi.c
> index 7f2624f42724..e961ebecd7df 100644
> --- a/drivers/usb/typec/ucsi/ucsi.c
> +++ b/drivers/usb/typec/ucsi/ucsi.c
> @@ -1069,11 +1069,9 @@ static int ucsi_register_port(struct ucsi *ucsi, int index)
>  
>  	cap->fwnode = ucsi_find_fwnode(con);
>  	con->usb_role_sw = fwnode_usb_role_switch_get(cap->fwnode);
> -	if (IS_ERR(con->usb_role_sw)) {
> -		dev_err(ucsi->dev, "con%d: failed to get usb role switch\n",
> -			con->num);
> -		return PTR_ERR(con->usb_role_sw);
> -	}
> +	if (IS_ERR(con->usb_role_sw))
> +		return dev_err_probe(ucsi->dev, PTR_ERR(con->usb_role_sw),
> +			"con%d: failed to get usb role switch\n", con->num);
>  
>  	/* Delay other interactions with the con until registration is complete */
>  	mutex_lock(&con->lock);

thanks,

-- 
heikki

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-09-28  6:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-27 13:45 [PATCH v3 1/1] usb: typec: ucsi: Don't warn on probe deferral Wayne Chang
2022-09-28  6:23 ` Heikki Krogerus

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.