diff options
author | Fabrizio Castro <fabrizio.castro@bp.renesas.com> | 2018-11-05 11:53:47 +0100 |
---|---|---|
committer | Wim Van Sebroeck <wim@linux-watchdog.org> | 2018-11-17 09:53:26 +0100 |
commit | f8cde726739c60109cc4a30b6b5475b5bd5e1d97 (patch) | |
tree | d9a9aa4762a8eb386078eb9ac0e94f6dbb8cb7ca /drivers/watchdog | |
parent | Linux 4.20-rc2 (diff) | |
download | linux-f8cde726739c60109cc4a30b6b5475b5bd5e1d97.tar.xz linux-f8cde726739c60109cc4a30b6b5475b5bd5e1d97.zip |
watchdog: renesas_wdt: Fix typos
Do not use "," but ";" to separate instructions.
Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Reviewed-by: Simon Horman <horms+renesas@verge.net.au>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r-- | drivers/watchdog/renesas_wdt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/watchdog/renesas_wdt.c b/drivers/watchdog/renesas_wdt.c index 0d74c3e48979..b570962e84f3 100644 --- a/drivers/watchdog/renesas_wdt.c +++ b/drivers/watchdog/renesas_wdt.c @@ -220,8 +220,8 @@ static int rwdt_probe(struct platform_device *pdev) goto out_pm_disable; } - priv->wdev.info = &rwdt_ident, - priv->wdev.ops = &rwdt_ops, + priv->wdev.info = &rwdt_ident; + priv->wdev.ops = &rwdt_ops; priv->wdev.parent = &pdev->dev; priv->wdev.min_timeout = 1; priv->wdev.max_timeout = DIV_BY_CLKS_PER_SEC(priv, 65536); |