lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Wed, 16 Dec 2020 12:16:36 -0800 From: Guenter Roeck <linux@...ck-us.net> To: Zheng Yongjun <zhengyongjun3@...wei.com> Cc: wim@...ux-watchdog.org, linux-watchdog@...r.kernel.org, linux-kernel@...r.kernel.org Subject: Re: [PATCH -next] watchdog: convert comma to semicolon 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@...wei.com> Reviewed-by: Guenter Roeck <linux@...ck-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 >
Powered by blists - more mailing lists