Skip to content

Commit 35ff0eb

Browse files
Chen NiWim Van Sebroeck
authored andcommitted
watchdog: iTCO_wdt: Convert comma to semicolon
Replace a comma between expression statements by a semicolon. Signed-off-by: Chen Ni <nichen@iscas.ac.cn> Reviewed-by: Andy Shevchenko <andy@kernel.org> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Link: https://lore.kernel.org/r/20240902081051.3824822-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 f6febd0 commit 35ff0eb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/watchdog/iTCO_wdt.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -563,8 +563,8 @@ static int iTCO_wdt_probe(struct platform_device *pdev)
563563
}
564564

565565
ident.firmware_version = p->iTCO_version;
566-
p->wddev.info = &ident,
567-
p->wddev.ops = &iTCO_wdt_ops,
566+
p->wddev.info = &ident;
567+
p->wddev.ops = &iTCO_wdt_ops;
568568
p->wddev.bootstatus = 0;
569569
p->wddev.timeout = WATCHDOG_TIMEOUT;
570570
watchdog_set_nowayout(&p->wddev, nowayout);

0 commit comments

Comments
 (0)