Skip to content

Commit 134d253

Browse files
Shen LichuanWim Van Sebroeck
authored andcommitted
watchdog: Convert comma to semicolon
To ensure code clarity and prevent potential errors, it's advisable to employ the ';' as a statement separator, except when ',' are intentionally used for specific purposes. Signed-off-by: Shen Lichuan <shenlichuan@vivo.com> Reviewed-by: Wim Van Sebroeck <wim@linux-watchdog.org> Link: https://lore.kernel.org/r/20240910070058.40867-1-shenlichuan@vivo.com Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
1 parent 95c588f commit 134d253

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/watchdog/pm8916_wdt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ static int pm8916_wdt_probe(struct platform_device *pdev)
218218
return err;
219219
}
220220

221-
wdt->wdev.ops = &pm8916_wdt_ops,
221+
wdt->wdev.ops = &pm8916_wdt_ops;
222222
wdt->wdev.parent = dev;
223223
wdt->wdev.min_timeout = PM8916_WDT_MIN_TIMEOUT;
224224
wdt->wdev.max_timeout = PM8916_WDT_MAX_TIMEOUT;

0 commit comments

Comments
 (0)