mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
watchdog: lenovo_se10_wdt: Convert comma to semicolon
Replace a comma between expression statements by a semicolon.
Fixes: 1f6602c8ed
("watchdog: lenovo_se10_wdt: Watchdog driver for Lenovo SE10 platform")
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Reviewed-by: Mark Pearson <mpearson-lenovo@squebb.ca>
Link: https://lore.kernel.org/r/20240716030725.400400-1-nichen@iscas.ac.cn
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
This commit is contained in:
parent
022ec3b59c
commit
2c58070fde
@ -196,8 +196,8 @@ static int se10_wdt_probe(struct platform_device *pdev)
|
||||
watchdog_set_drvdata(&priv->wdd, priv);
|
||||
|
||||
priv->wdd.parent = dev;
|
||||
priv->wdd.info = &wdt_info,
|
||||
priv->wdd.ops = &se10_wdt_ops,
|
||||
priv->wdd.info = &wdt_info;
|
||||
priv->wdd.ops = &se10_wdt_ops;
|
||||
priv->wdd.timeout = WATCHDOG_TIMEOUT; /* Set default timeout */
|
||||
priv->wdd.min_timeout = MIN_TIMEOUT;
|
||||
priv->wdd.max_timeout = MAX_TIMEOUT;
|
||||
|
Loading…
Reference in New Issue
Block a user