summaryrefslogtreecommitdiff
path: root/drivers/watchdog/rza_wdt.c
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert+renesas@glider.be>2021-09-15 11:48:23 +0200
committerWim Van Sebroeck <wim@linux-watchdog.org>2021-10-26 21:31:10 +0200
commit414a9bf8285b8da90a7c2cb36a028a3279b20ec7 (patch)
tree08699a68b28c6ef2f2a815493d9407c3f97232d7 /drivers/watchdog/rza_wdt.c
parentdd29cb4b88bc283ea4f01f8e0f38086f091dd348 (diff)
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 <julia.lawall@inria.fr>. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Link: https://lore.kernel.org/r/fa4451efd21e287f8fdf2f7f8495b070544209c0.1631699262.git.geert+renesas@glider.be Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
Diffstat (limited to 'drivers/watchdog/rza_wdt.c')
-rw-r--r--drivers/watchdog/rza_wdt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/watchdog/rza_wdt.c b/drivers/watchdog/rza_wdt.c
index 7b6c365f7cd3..fe6c2ed35e04 100644
--- a/drivers/watchdog/rza_wdt.c
+++ b/drivers/watchdog/rza_wdt.c
@@ -189,8 +189,8 @@ static int rza_wdt_probe(struct platform_device *pdev)
return -ENOENT;
}
- priv->wdev.info = &rza_wdt_ident,
- priv->wdev.ops = &rza_wdt_ops,
+ priv->wdev.info = &rza_wdt_ident;
+ priv->wdev.ops = &rza_wdt_ops;
priv->wdev.parent = dev;
priv->cks = (u8)(uintptr_t) of_device_get_match_data(dev);