[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <134feafc-7ba8-0786-4e1b-86549f352b14@roeck-us.net>
Date: Fri, 11 Dec 2020 07:10:06 -0800
From: Guenter Roeck <linux@...ck-us.net>
To: Zheng Yongjun <zhengyongjun3@...wei.com>,
heikki.krogerus@...ux.intel.com, gregkh@...uxfoundation.org,
linux-usb@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH -next] usb: typec: tcpm: convert comma to semicolon
On 12/11/20 12:55 AM, Zheng Yongjun wrote:
> Replace a comma between expression statements by a semicolon.
>
> Signed-off-by: Zheng Yongjun <zhengyongjun3@...wei.com>
Reviewed-by: Guenter Roeck <linux@...ck-us.net>
> ---
> drivers/usb/typec/tcpm/tcpm.c | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/usb/typec/tcpm/tcpm.c b/drivers/usb/typec/tcpm/tcpm.c
> index a6fae1f86505..4451507d600c 100644
> --- a/drivers/usb/typec/tcpm/tcpm.c
> +++ b/drivers/usb/typec/tcpm/tcpm.c
> @@ -5024,14 +5024,14 @@ static int devm_tcpm_psy_register(struct tcpm_port *port)
> snprintf(psy_name, psy_name_len, "%s%s", tcpm_psy_name_prefix,
> port_dev_name);
> port->psy_desc.name = psy_name;
> - port->psy_desc.type = POWER_SUPPLY_TYPE_USB,
> + port->psy_desc.type = POWER_SUPPLY_TYPE_USB;
> port->psy_desc.usb_types = tcpm_psy_usb_types;
> port->psy_desc.num_usb_types = ARRAY_SIZE(tcpm_psy_usb_types);
> - port->psy_desc.properties = tcpm_psy_props,
> - port->psy_desc.num_properties = ARRAY_SIZE(tcpm_psy_props),
> - port->psy_desc.get_property = tcpm_psy_get_prop,
> - port->psy_desc.set_property = tcpm_psy_set_prop,
> - port->psy_desc.property_is_writeable = tcpm_psy_prop_writeable,
> + port->psy_desc.properties = tcpm_psy_props;
> + port->psy_desc.num_properties = ARRAY_SIZE(tcpm_psy_props);
> + port->psy_desc.get_property = tcpm_psy_get_prop;
> + port->psy_desc.set_property = tcpm_psy_set_prop;
> + port->psy_desc.property_is_writeable = tcpm_psy_prop_writeable;
>
> port->usb_type = POWER_SUPPLY_USB_TYPE_C;
>
>
Powered by blists - more mailing lists