Skip to content

Commit 414a9bf

Browse files
geertuWim Van Sebroeck
authored andcommitted
watchdog: rza_wdt: Use semicolons instead of commas
This code works, but it is cleaner to use semicolons at the end of statements instead of commas. Extracted from a big anonymous patch by Julia Lawall <[email protected]>. Signed-off-by: Geert Uytterhoeven <[email protected]> Reviewed-by: Guenter Roeck <[email protected]> Link: https://lore.kernel.org/r/fa4451efd21e287f8fdf2f7f8495b070544209c0.1631699262.git.geert+renesas@glider.be Signed-off-by: Guenter Roeck <[email protected]> Signed-off-by: Wim Van Sebroeck <[email protected]>
1 parent dd29cb4 commit 414a9bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/watchdog/rza_wdt.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@ static int rza_wdt_probe(struct platform_device *pdev)
189189
return -ENOENT;
190190
}
191191

192-
priv->wdev.info = &rza_wdt_ident,
193-
priv->wdev.ops = &rza_wdt_ops,
192+
priv->wdev.info = &rza_wdt_ident;
193+
priv->wdev.ops = &rza_wdt_ops;
194194
priv->wdev.parent = dev;
195195

196196
priv->cks = (u8)(uintptr_t) of_device_get_match_data(dev);

0 commit comments

Comments
 (0)