Re: [PATCH -next] watchdog: convert comma to semicolon

From: Guenter Roeck
Date: Wed Dec 16 2020 - 15:17:28 EST


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@xxxxxxxxxx>

Reviewed-by: Guenter Roeck <linux@xxxxxxxxxxxx>

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
>