Skip to content

Commit 3a0caec

Browse files
Chen NiWim Van Sebroeck
authored andcommitted
drivers: watchdog: marvell_gti: Convert comma to semicolon
Replace a comma between expression statements by a semicolon. Signed-off-by: Chen Ni <nichen@iscas.ac.cn> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Link: https://lore.kernel.org/r/20240902080419.3824706-1-nichen@iscas.ac.cn Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
1 parent 35ff0eb commit 3a0caec

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/watchdog/marvell_gti_wdt.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,8 +285,8 @@ static int gti_wdt_probe(struct platform_device *pdev)
285285
}
286286

287287
wdog_dev = &priv->wdev;
288-
wdog_dev->info = &gti_wdt_ident,
289-
wdog_dev->ops = &gti_wdt_ops,
288+
wdog_dev->info = &gti_wdt_ident;
289+
wdog_dev->ops = &gti_wdt_ops;
290290
wdog_dev->parent = dev;
291291
/*
292292
* Watchdog counter is 24 bit where lower 8 bits are zeros

0 commit comments

Comments
 (0)