Skip to content

Commit 1bb3b54

Browse files
Chen NiWim Van Sebroeck
authored andcommitted
watchdog: rzn1: Convert comma to semicolon
Replace a comma between expression statements by a semicolon. Fixes: d65112f ("watchdog: Add Renesas RZ/N1 Watchdog driver") Signed-off-by: Chen Ni <[email protected]> Reviewed-by: Guenter Roeck <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Guenter Roeck <[email protected]> Signed-off-by: Wim Van Sebroeck <[email protected]>
1 parent 2c58070 commit 1bb3b54

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/watchdog/rzn1_wdt.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,9 @@ static int rzn1_wdt_probe(struct platform_device *pdev)
140140
}
141141

142142
wdt->clk_rate_khz = clk_rate / 1000;
143-
wdt->wdtdev.info = &rzn1_wdt_info,
144-
wdt->wdtdev.ops = &rzn1_wdt_ops,
145-
wdt->wdtdev.status = WATCHDOG_NOWAYOUT_INIT_STATUS,
143+
wdt->wdtdev.info = &rzn1_wdt_info;
144+
wdt->wdtdev.ops = &rzn1_wdt_ops;
145+
wdt->wdtdev.status = WATCHDOG_NOWAYOUT_INIT_STATUS;
146146
wdt->wdtdev.parent = dev;
147147
/*
148148
* The period of the watchdog cannot be changed once set

0 commit comments

Comments
 (0)