]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
watchdog: lenovo_se10_wdt: Convert comma to semicolon
authorChen Ni <nichen@iscas.ac.cn>
Tue, 16 Jul 2024 03:07:25 +0000 (11:07 +0800)
committerWim Van Sebroeck <wim@linux-watchdog.org>
Thu, 18 Jul 2024 18:35:40 +0000 (20:35 +0200)
Replace a comma between expression statements by a semicolon.

Fixes: 1f6602c8ed1e ("watchdog: lenovo_se10_wdt: Watchdog driver for Lenovo SE10 platform")
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Reviewed-by: Mark Pearson <mpearson-lenovo@squebb.ca>
Link: https://lore.kernel.org/r/20240716030725.400400-1-nichen@iscas.ac.cn
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
drivers/watchdog/lenovo_se10_wdt.c

index 139ff0e8220fba4c68c7cd002eeb1522ea90b38d..cd0500e5080b49542a1d4d66bc6f62fd01df376d 100644 (file)
@@ -196,8 +196,8 @@ static int se10_wdt_probe(struct platform_device *pdev)
        watchdog_set_drvdata(&priv->wdd, priv);
 
        priv->wdd.parent = dev;
-       priv->wdd.info = &wdt_info,
-       priv->wdd.ops = &se10_wdt_ops,
+       priv->wdd.info = &wdt_info;
+       priv->wdd.ops = &se10_wdt_ops;
        priv->wdd.timeout = WATCHDOG_TIMEOUT; /* Set default timeout */
        priv->wdd.min_timeout = MIN_TIMEOUT;
        priv->wdd.max_timeout = MAX_TIMEOUT;