All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next] usb: phy: convert comma to semicolon
@ 2020-12-11  8:54 Zheng Yongjun
  2020-12-15  5:25 ` Peter Chen
  0 siblings, 1 reply; 2+ messages in thread
From: Zheng Yongjun @ 2020-12-11  8:54 UTC (permalink / raw)
  To: balbi, gregkh, linux-usb, linux-omap, linux-kernel; +Cc: Zheng Yongjun

Replace a comma between expression statements by a semicolon.

Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
---
 drivers/usb/phy/phy-isp1301-omap.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/usb/phy/phy-isp1301-omap.c b/drivers/usb/phy/phy-isp1301-omap.c
index 4a6462c92ef2..6f4f74e6ba51 100644
--- a/drivers/usb/phy/phy-isp1301-omap.c
+++ b/drivers/usb/phy/phy-isp1301-omap.c
@@ -1566,13 +1566,13 @@ isp1301_probe(struct i2c_client *i2c, const struct i2c_device_id *id)
 
 	isp->phy.dev = &i2c->dev;
 	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->set_host = isp1301_set_host,
-	isp->phy.otg->set_peripheral = isp1301_set_peripheral,
-	isp->phy.otg->start_srp = isp1301_start_srp,
-	isp->phy.otg->start_hnp = isp1301_start_hnp,
+	isp->phy.otg->set_host = isp1301_set_host;
+	isp->phy.otg->set_peripheral = isp1301_set_peripheral;
+	isp->phy.otg->start_srp = isp1301_start_srp;
+	isp->phy.otg->start_hnp = isp1301_start_hnp;
 
 	enable_vbus_draw(isp, 0);
 	power_down(isp);
-- 
2.22.0


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

* Re: [PATCH -next] usb: phy: convert comma to semicolon
  2020-12-11  8:54 [PATCH -next] usb: phy: convert comma to semicolon Zheng Yongjun
@ 2020-12-15  5:25 ` Peter Chen
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Chen @ 2020-12-15  5:25 UTC (permalink / raw)
  To: Zheng Yongjun; +Cc: balbi, gregkh, linux-usb, linux-omap, linux-kernel

On 20-12-11 16:54:28, Zheng Yongjun wrote:
> Replace a comma between expression statements by a semicolon.
> 
> Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>

Reviewed-by: Peter Chen <peter.chen@nxp.com>

Peter
> ---
>  drivers/usb/phy/phy-isp1301-omap.c | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/usb/phy/phy-isp1301-omap.c b/drivers/usb/phy/phy-isp1301-omap.c
> index 4a6462c92ef2..6f4f74e6ba51 100644
> --- a/drivers/usb/phy/phy-isp1301-omap.c
> +++ b/drivers/usb/phy/phy-isp1301-omap.c
> @@ -1566,13 +1566,13 @@ isp1301_probe(struct i2c_client *i2c, const struct i2c_device_id *id)
>  
>  	isp->phy.dev = &i2c->dev;
>  	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->set_host = isp1301_set_host,
> -	isp->phy.otg->set_peripheral = isp1301_set_peripheral,
> -	isp->phy.otg->start_srp = isp1301_start_srp,
> -	isp->phy.otg->start_hnp = isp1301_start_hnp,
> +	isp->phy.otg->set_host = isp1301_set_host;
> +	isp->phy.otg->set_peripheral = isp1301_set_peripheral;
> +	isp->phy.otg->start_srp = isp1301_start_srp;
> +	isp->phy.otg->start_hnp = isp1301_start_hnp;
>  
>  	enable_vbus_draw(isp, 0);
>  	power_down(isp);
> -- 
> 2.22.0
> 

-- 

Thanks,
Peter Chen

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

end of thread, other threads:[~2020-12-15  5:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-11  8:54 [PATCH -next] usb: phy: convert comma to semicolon Zheng Yongjun
2020-12-15  5:25 ` Peter Chen

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.