Skip to content

Commit 2c58070

Browse files
Chen NiWim Van Sebroeck
authored andcommitted
watchdog: lenovo_se10_wdt: Convert comma to semicolon
Replace a comma between expression statements by a semicolon. Fixes: 1f6602c ("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>
1 parent 022ec3b commit 2c58070

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/watchdog/lenovo_se10_wdt.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,8 @@ static int se10_wdt_probe(struct platform_device *pdev)
196196
watchdog_set_drvdata(&priv->wdd, priv);
197197

198198
priv->wdd.parent = dev;
199-
priv->wdd.info = &wdt_info,
200-
priv->wdd.ops = &se10_wdt_ops,
199+
priv->wdd.info = &wdt_info;
200+
priv->wdd.ops = &se10_wdt_ops;
201201
priv->wdd.timeout = WATCHDOG_TIMEOUT; /* Set default timeout */
202202
priv->wdd.min_timeout = MIN_TIMEOUT;
203203
priv->wdd.max_timeout = MAX_TIMEOUT;

0 commit comments

Comments
 (0)