usb: ucsi: convert comma to semicolon
authorZheng Yongjun <zhengyongjun3@huawei.com>
Fri, 11 Dec 2020 08:55:10 +0000 (16:55 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 11 Dec 2020 15:19:54 +0000 (16:19 +0100)
Replace a comma between expression statements by a semicolon.

Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
Link: https://lore.kernel.org/r/20201211085510.2928-1-zhengyongjun3@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/typec/ucsi/psy.c

index 571a51e..56bf565 100644 (file)
@@ -220,11 +220,11 @@ int ucsi_register_port_psy(struct ucsi_connector *con)
                return -ENOMEM;
 
        con->psy_desc.name = psy_name;
-       con->psy_desc.type = POWER_SUPPLY_TYPE_USB,
+       con->psy_desc.type = POWER_SUPPLY_TYPE_USB;
        con->psy_desc.usb_types = ucsi_psy_usb_types;
        con->psy_desc.num_usb_types = ARRAY_SIZE(ucsi_psy_usb_types);
-       con->psy_desc.properties = ucsi_psy_props,
-       con->psy_desc.num_properties = ARRAY_SIZE(ucsi_psy_props),
+       con->psy_desc.properties = ucsi_psy_props;
+       con->psy_desc.num_properties = ARRAY_SIZE(ucsi_psy_props);
        con->psy_desc.get_property = ucsi_psy_get_prop;
 
        con->psy = power_supply_register(dev, &con->psy_desc, &psy_cfg);