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

Configure Feed

Select the types of activity you want to include in your feed.

watchdog: rzn1: Convert comma to semicolon

Replace a comma between expression statements by a semicolon.

Fixes: d65112f58464 ("watchdog: Add Renesas RZ/N1 Watchdog driver")
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Link: https://lore.kernel.org/r/20240716031137.400502-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
1bb3b542 2c58070f

+3 -3
+3 -3
drivers/watchdog/rzn1_wdt.c
··· 140 140 } 141 141 142 142 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; 146 146 wdt->wdtdev.parent = dev; 147 147 /* 148 148 * The period of the watchdog cannot be changed once set