diff options
author | Chen Ni <nichen@iscas.ac.cn> | 2024-07-16 11:11:37 +0800 |
---|---|---|
committer | Wim Van Sebroeck <wim@linux-watchdog.org> | 2024-07-18 20:35:40 +0200 |
commit | 1bb3b542cb1b68e40d4323592fdc9bd222c4f84a (patch) | |
tree | 84d324136ad5858a263c121d5c2bd11e92d316b6 | |
parent | 2c58070fde0fffe494d9e38b0ccedbda01c512ff (diff) | |
download | linux-stable-1bb3b542cb1b68e40d4323592fdc9bd222c4f84a.tar.gz linux-stable-1bb3b542cb1b68e40d4323592fdc9bd222c4f84a.tar.bz2 linux-stable-1bb3b542cb1b68e40d4323592fdc9bd222c4f84a.zip |
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>
-rw-r--r-- | drivers/watchdog/rzn1_wdt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/watchdog/rzn1_wdt.c b/drivers/watchdog/rzn1_wdt.c index 980c1717adb5..7d3192d34afd 100644 --- a/drivers/watchdog/rzn1_wdt.c +++ b/drivers/watchdog/rzn1_wdt.c @@ -140,9 +140,9 @@ static int rzn1_wdt_probe(struct platform_device *pdev) } wdt->clk_rate_khz = clk_rate / 1000; - wdt->wdtdev.info = &rzn1_wdt_info, - wdt->wdtdev.ops = &rzn1_wdt_ops, - wdt->wdtdev.status = WATCHDOG_NOWAYOUT_INIT_STATUS, + wdt->wdtdev.info = &rzn1_wdt_info; + wdt->wdtdev.ops = &rzn1_wdt_ops; + wdt->wdtdev.status = WATCHDOG_NOWAYOUT_INIT_STATUS; wdt->wdtdev.parent = dev; /* * The period of the watchdog cannot be changed once set |