linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] platform/chrome: cros_ec_typec: Fix call to typec_partner_set_pd_revision
@ 2021-02-02 16:32 Benson Leung
  2021-02-02 16:37 ` Benson Leung
  2021-02-02 16:37 ` Greg KH
  0 siblings, 2 replies; 4+ messages in thread
From: Benson Leung @ 2021-02-02 16:32 UTC (permalink / raw)
  To: heikki.krogerus, enric.balletbo, pmalani, gregkh, linux-usb,
	linux-kernel
  Cc: kyletso, bleung, bleung

typec_partner_set_pd_revision returns void now.

Fixes: cefc011f8daf platform/chrome: cros_ec_typec: Set Partner PD revision from status
Signed-off-by: Benson Leung <bleung@chromium.org>
---
 drivers/platform/chrome/cros_ec_typec.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/drivers/platform/chrome/cros_ec_typec.c b/drivers/platform/chrome/cros_ec_typec.c
index a7778258d0a0..7b93dfd02999 100644
--- a/drivers/platform/chrome/cros_ec_typec.c
+++ b/drivers/platform/chrome/cros_ec_typec.c
@@ -842,11 +842,7 @@ static int cros_typec_handle_sop_disc(struct cros_typec_data *typec, int port_nu
 		goto disc_exit;
 	}
 
-	ret = typec_partner_set_pd_revision(port->partner, pd_revision);
-	if (ret < 0) {
-		dev_err(typec->dev, "Failed to update partner PD revision, port: %d\n", port_num);
-		goto disc_exit;
-	}
+	typec_partner_set_pd_revision(port->partner, pd_revision);
 
 	memset(sop_disc, 0, EC_PROTO2_MAX_RESPONSE_SIZE);
 	ret = cros_typec_ec_command(typec, 0, EC_CMD_TYPEC_DISCOVERY, &req, sizeof(req),
-- 
2.30.0.365.g02bc693789-goog


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

* Re: [PATCH] platform/chrome: cros_ec_typec: Fix call to typec_partner_set_pd_revision
  2021-02-02 16:32 [PATCH] platform/chrome: cros_ec_typec: Fix call to typec_partner_set_pd_revision Benson Leung
@ 2021-02-02 16:37 ` Benson Leung
  2021-02-02 16:37 ` Greg KH
  1 sibling, 0 replies; 4+ messages in thread
From: Benson Leung @ 2021-02-02 16:37 UTC (permalink / raw)
  To: gregkh
  Cc: heikki.krogerus, enric.balletbo, pmalani, gregkh, linux-usb,
	linux-kernel, kyletso, bleung

[-- Attachment #1: Type: text/plain, Size: 1461 bytes --]

Hi Greg,

On Tue, Feb 02, 2021 at 08:32:48AM -0800, Benson Leung wrote:
> typec_partner_set_pd_revision returns void now.
> 
> Fixes: cefc011f8daf platform/chrome: cros_ec_typec: Set Partner PD revision from status
> Signed-off-by: Benson Leung <bleung@chromium.org>

This one needs to be taken too after Kyle's fix earlier this morning.

Thanks,
Benson

> ---
>  drivers/platform/chrome/cros_ec_typec.c | 6 +-----
>  1 file changed, 1 insertion(+), 5 deletions(-)
> 
> diff --git a/drivers/platform/chrome/cros_ec_typec.c b/drivers/platform/chrome/cros_ec_typec.c
> index a7778258d0a0..7b93dfd02999 100644
> --- a/drivers/platform/chrome/cros_ec_typec.c
> +++ b/drivers/platform/chrome/cros_ec_typec.c
> @@ -842,11 +842,7 @@ static int cros_typec_handle_sop_disc(struct cros_typec_data *typec, int port_nu
>  		goto disc_exit;
>  	}
>  
> -	ret = typec_partner_set_pd_revision(port->partner, pd_revision);
> -	if (ret < 0) {
> -		dev_err(typec->dev, "Failed to update partner PD revision, port: %d\n", port_num);
> -		goto disc_exit;
> -	}
> +	typec_partner_set_pd_revision(port->partner, pd_revision);
>  
>  	memset(sop_disc, 0, EC_PROTO2_MAX_RESPONSE_SIZE);
>  	ret = cros_typec_ec_command(typec, 0, EC_CMD_TYPEC_DISCOVERY, &req, sizeof(req),
> -- 
> 2.30.0.365.g02bc693789-goog
> 

-- 
Benson Leung
Staff Software Engineer
Chrome OS Kernel
Google Inc.
bleung@google.com
Chromium OS Project
bleung@chromium.org

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

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

* Re: [PATCH] platform/chrome: cros_ec_typec: Fix call to typec_partner_set_pd_revision
  2021-02-02 16:32 [PATCH] platform/chrome: cros_ec_typec: Fix call to typec_partner_set_pd_revision Benson Leung
  2021-02-02 16:37 ` Benson Leung
@ 2021-02-02 16:37 ` Greg KH
  2021-02-02 16:46   ` Benson Leung
  1 sibling, 1 reply; 4+ messages in thread
From: Greg KH @ 2021-02-02 16:37 UTC (permalink / raw)
  To: Benson Leung
  Cc: heikki.krogerus, enric.balletbo, pmalani, linux-usb,
	linux-kernel, kyletso, bleung

On Tue, Feb 02, 2021 at 08:32:48AM -0800, Benson Leung wrote:
> typec_partner_set_pd_revision returns void now.
> 
> Fixes: cefc011f8daf platform/chrome: cros_ec_typec: Set Partner PD revision from status

Can you please use the documented format for the Fixes: tag (and for the
use of any git id in the kernel changelog)?

If anyone were to commit this change, you would get a nasty-gram email
from linux-next :)

thanks,

greg k-h

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

* Re: [PATCH] platform/chrome: cros_ec_typec: Fix call to typec_partner_set_pd_revision
  2021-02-02 16:37 ` Greg KH
@ 2021-02-02 16:46   ` Benson Leung
  0 siblings, 0 replies; 4+ messages in thread
From: Benson Leung @ 2021-02-02 16:46 UTC (permalink / raw)
  To: Greg KH
  Cc: Benson Leung, heikki.krogerus, enric.balletbo, pmalani,
	linux-usb, linux-kernel, kyletso

[-- Attachment #1: Type: text/plain, Size: 731 bytes --]

On Tue, Feb 02, 2021 at 05:37:36PM +0100, Greg KH wrote:
> On Tue, Feb 02, 2021 at 08:32:48AM -0800, Benson Leung wrote:
> > typec_partner_set_pd_revision returns void now.
> > 
> > Fixes: cefc011f8daf platform/chrome: cros_ec_typec: Set Partner PD revision from status
> 
> Can you please use the documented format for the Fixes: tag (and for the
> use of any git id in the kernel changelog)?


D'oh. Thanks. I set up my pretty=fuller now.

Benson
> 
> If anyone were to commit this change, you would get a nasty-gram email
> from linux-next :)
> 
> thanks,
> 
> greg k-h

-- 
Benson Leung
Staff Software Engineer
Chrome OS Kernel
Google Inc.
bleung@google.com
Chromium OS Project
bleung@chromium.org

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

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

end of thread, other threads:[~2021-02-02 16:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-02 16:32 [PATCH] platform/chrome: cros_ec_typec: Fix call to typec_partner_set_pd_revision Benson Leung
2021-02-02 16:37 ` Benson Leung
2021-02-02 16:37 ` Greg KH
2021-02-02 16:46   ` Benson Leung

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).