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 <[email protected]> Reviewed-by: Wim Van Sebroeck <[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 95c588f commit 134d253

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)