usb: phy: convert comma to semicolon

Replace a comma between expression statements by a semicolon.

Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
Link: https://lore.kernel.org/r/20201211085428.2871-1-zhengyongjun3@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Zheng Yongjun 2020-12-11 16:54:28 +08:00 коммит произвёл Greg Kroah-Hartman
Родитель 2eda5b5f96
Коммит a256e24021
1 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -1571,13 +1571,13 @@ isp1301_probe(struct i2c_client *i2c, const struct i2c_device_id *id)
isp->phy.dev = &i2c->dev; isp->phy.dev = &i2c->dev;
isp->phy.label = DRIVER_NAME; isp->phy.label = DRIVER_NAME;
isp->phy.set_power = isp1301_set_power, isp->phy.set_power = isp1301_set_power;
isp->phy.otg->usb_phy = &isp->phy; isp->phy.otg->usb_phy = &isp->phy;
isp->phy.otg->set_host = isp1301_set_host, isp->phy.otg->set_host = isp1301_set_host;
isp->phy.otg->set_peripheral = isp1301_set_peripheral, isp->phy.otg->set_peripheral = isp1301_set_peripheral;
isp->phy.otg->start_srp = isp1301_start_srp, isp->phy.otg->start_srp = isp1301_start_srp;
isp->phy.otg->start_hnp = isp1301_start_hnp, isp->phy.otg->start_hnp = isp1301_start_hnp;
enable_vbus_draw(isp, 0); enable_vbus_draw(isp, 0);
power_down(isp); power_down(isp);