diff options
author | 2024-09-02 16:10:51 +0800 | |
---|---|---|
committer | 2024-09-10 11:08:48 +0200 | |
commit | 35ff0ebfe6327b721667f3a69e92581c65fe4dab (patch) | |
tree | ebc24f4d7af6fce3038f1dddb19128571f57a4f2 | |
parent | watchdog: Add Watchdog Timer driver for RZ/V2H(P) (diff) | |
download | wireguard-linux-35ff0ebfe6327b721667f3a69e92581c65fe4dab.tar.xz wireguard-linux-35ff0ebfe6327b721667f3a69e92581c65fe4dab.zip |
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>
Diffstat (limited to '')
-rw-r--r-- | drivers/watchdog/iTCO_wdt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/watchdog/iTCO_wdt.c b/drivers/watchdog/iTCO_wdt.c index 264857d314da..35b358bcf94c 100644 --- a/drivers/watchdog/iTCO_wdt.c +++ b/drivers/watchdog/iTCO_wdt.c @@ -563,8 +563,8 @@ static int iTCO_wdt_probe(struct platform_device *pdev) } ident.firmware_version = p->iTCO_version; - p->wddev.info = &ident, - p->wddev.ops = &iTCO_wdt_ops, + p->wddev.info = &ident; + p->wddev.ops = &iTCO_wdt_ops; p->wddev.bootstatus = 0; p->wddev.timeout = WATCHDOG_TIMEOUT; watchdog_set_nowayout(&p->wddev, nowayout); |