Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Chen Ni and committed by
Wim Van Sebroeck
35ff0ebf f6febd0a

+2 -2
+2 -2
drivers/watchdog/iTCO_wdt.c
··· 563 563 } 564 564 565 565 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; 568 568 p->wddev.bootstatus = 0; 569 569 p->wddev.timeout = WATCHDOG_TIMEOUT; 570 570 watchdog_set_nowayout(&p->wddev, nowayout);