All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next] watchdog: convert comma to semicolon
@ 2020-12-16 13:27 Zheng Yongjun
  2020-12-16 20:16 ` Guenter Roeck
  0 siblings, 1 reply; 2+ messages in thread
From: Zheng Yongjun @ 2020-12-16 13:27 UTC (permalink / raw)
  To: wim, linux, linux-watchdog, linux-kernel; +Cc: Zheng Yongjun

Replace a comma between expression statements by a semicolon.

Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
---
 drivers/watchdog/mpc8xxx_wdt.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/watchdog/mpc8xxx_wdt.c b/drivers/watchdog/mpc8xxx_wdt.c
index 3fc457bc16db..2f7ded32e878 100644
--- a/drivers/watchdog/mpc8xxx_wdt.c
+++ b/drivers/watchdog/mpc8xxx_wdt.c
@@ -175,8 +175,8 @@ static int mpc8xxx_wdt_probe(struct platform_device *ofdev)
 
 	spin_lock_init(&ddata->lock);
 
-	ddata->wdd.info = &mpc8xxx_wdt_info,
-	ddata->wdd.ops = &mpc8xxx_wdt_ops,
+	ddata->wdd.info = &mpc8xxx_wdt_info;
+	ddata->wdd.ops = &mpc8xxx_wdt_ops;
 
 	ddata->wdd.timeout = WATCHDOG_TIMEOUT;
 	watchdog_init_timeout(&ddata->wdd, timeout, dev);
-- 
2.22.0


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

* Re: [PATCH -next] watchdog: convert comma to semicolon
  2020-12-16 13:27 [PATCH -next] watchdog: convert comma to semicolon Zheng Yongjun
@ 2020-12-16 20:16 ` Guenter Roeck
  0 siblings, 0 replies; 2+ messages in thread
From: Guenter Roeck @ 2020-12-16 20:16 UTC (permalink / raw)
  To: Zheng Yongjun; +Cc: wim, linux-watchdog, linux-kernel

On Wed, Dec 16, 2020 at 09:27:33PM +0800, Zheng Yongjun wrote:
> Replace a comma between expression statements by a semicolon.
> 
> Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>

Reviewed-by: Guenter Roeck <linux@roeck-us.net>

Guenter

> ---
>  drivers/watchdog/mpc8xxx_wdt.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/watchdog/mpc8xxx_wdt.c b/drivers/watchdog/mpc8xxx_wdt.c
> index 3fc457bc16db..2f7ded32e878 100644
> --- a/drivers/watchdog/mpc8xxx_wdt.c
> +++ b/drivers/watchdog/mpc8xxx_wdt.c
> @@ -175,8 +175,8 @@ static int mpc8xxx_wdt_probe(struct platform_device *ofdev)
>  
>  	spin_lock_init(&ddata->lock);
>  
> -	ddata->wdd.info = &mpc8xxx_wdt_info,
> -	ddata->wdd.ops = &mpc8xxx_wdt_ops,
> +	ddata->wdd.info = &mpc8xxx_wdt_info;
> +	ddata->wdd.ops = &mpc8xxx_wdt_ops;
>  
>  	ddata->wdd.timeout = WATCHDOG_TIMEOUT;
>  	watchdog_init_timeout(&ddata->wdd, timeout, dev);
> -- 
> 2.22.0
> 

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

end of thread, other threads:[~2020-12-16 20:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-16 13:27 [PATCH -next] watchdog: convert comma to semicolon Zheng Yongjun
2020-12-16 20:16 ` Guenter Roeck

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.