watchdog: convert comma to semicolon
authorZheng Yongjun <zhengyongjun3@huawei.com>
Wed, 16 Dec 2020 13:27:33 +0000 (21:27 +0800)
committerWim Van Sebroeck <wim@linux-watchdog.org>
Thu, 17 Dec 2020 20:58:46 +0000 (21:58 +0100)
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>
Link: https://lore.kernel.org/r/20201216132733.15635-1-zhengyongjun3@huawei.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
drivers/watchdog/mpc8xxx_wdt.c

index 3fc457b..2f7ded3 100644 (file)
@@ -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);