Commit 16a7eec2 authored by Marco Felsch's avatar Marco Felsch Committed by Wim Van Sebroeck

watchdog: da9063: remove duplicated timeout_to_sel calls

Every time da9063_wdt_update_timeout() gets called a timeout_to_sel() is
made because the timeout argument of update_timeout() is the raw
register value. Moving the second<->raw-value translation into
da9063_wdt_update_timeout() removes duplicated code.
Signed-off-by: default avatarMarco Felsch <m.felsch@pengutronix.de>
Acked-by: default avatarSteve Twiss <stwiss.opensource@diasemi.com>
Reviewed-by: default avatarGuenter Roeck <linux@roeck-us.net>
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
Signed-off-by: default avatarWim Van Sebroeck <wim@linux-watchdog.org>
parent 6f4cedb7
...@@ -64,8 +64,10 @@ static int da9063_wdt_disable_timer(struct da9063 *da9063) ...@@ -64,8 +64,10 @@ static int da9063_wdt_disable_timer(struct da9063 *da9063)
DA9063_TWDSCALE_DISABLE); DA9063_TWDSCALE_DISABLE);
} }
static int da9063_wdt_update_timeout(struct da9063 *da9063, unsigned int regval) static int
da9063_wdt_update_timeout(struct da9063 *da9063, unsigned int timeout)
{ {
unsigned int regval;
int ret; int ret;
/* /*
...@@ -81,6 +83,7 @@ static int da9063_wdt_update_timeout(struct da9063 *da9063, unsigned int regval) ...@@ -81,6 +83,7 @@ static int da9063_wdt_update_timeout(struct da9063 *da9063, unsigned int regval)
return ret; return ret;
usleep_range(150, 300); usleep_range(150, 300);
regval = da9063_wdt_timeout_to_sel(timeout);
return regmap_update_bits(da9063->regmap, DA9063_REG_CONTROL_D, return regmap_update_bits(da9063->regmap, DA9063_REG_CONTROL_D,
DA9063_TWDSCALE_MASK, regval); DA9063_TWDSCALE_MASK, regval);
...@@ -89,11 +92,9 @@ static int da9063_wdt_update_timeout(struct da9063 *da9063, unsigned int regval) ...@@ -89,11 +92,9 @@ static int da9063_wdt_update_timeout(struct da9063 *da9063, unsigned int regval)
static int da9063_wdt_start(struct watchdog_device *wdd) static int da9063_wdt_start(struct watchdog_device *wdd)
{ {
struct da9063 *da9063 = watchdog_get_drvdata(wdd); struct da9063 *da9063 = watchdog_get_drvdata(wdd);
unsigned int selector;
int ret; int ret;
selector = da9063_wdt_timeout_to_sel(wdd->timeout); ret = da9063_wdt_update_timeout(da9063, wdd->timeout);
ret = da9063_wdt_update_timeout(da9063, selector);
if (ret) if (ret)
dev_err(da9063->dev, "Watchdog failed to start (err = %d)\n", dev_err(da9063->dev, "Watchdog failed to start (err = %d)\n",
ret); ret);
...@@ -132,11 +133,8 @@ static int da9063_wdt_set_timeout(struct watchdog_device *wdd, ...@@ -132,11 +133,8 @@ static int da9063_wdt_set_timeout(struct watchdog_device *wdd,
unsigned int timeout) unsigned int timeout)
{ {
struct da9063 *da9063 = watchdog_get_drvdata(wdd); struct da9063 *da9063 = watchdog_get_drvdata(wdd);
unsigned int selector;
int ret = 0; int ret = 0;
selector = da9063_wdt_timeout_to_sel(timeout);
/* /*
* There are two cases when a set_timeout() will be called: * There are two cases when a set_timeout() will be called:
* 1. The watchdog is off and someone wants to set the timeout for the * 1. The watchdog is off and someone wants to set the timeout for the
...@@ -148,13 +146,13 @@ static int da9063_wdt_set_timeout(struct watchdog_device *wdd, ...@@ -148,13 +146,13 @@ static int da9063_wdt_set_timeout(struct watchdog_device *wdd,
* enabling the watchdog, so the timeout must be buffered by the driver. * enabling the watchdog, so the timeout must be buffered by the driver.
*/ */
if (watchdog_active(wdd)) if (watchdog_active(wdd))
ret = da9063_wdt_update_timeout(da9063, selector); ret = da9063_wdt_update_timeout(da9063, timeout);
if (ret) if (ret)
dev_err(da9063->dev, "Failed to set watchdog timeout (err = %d)\n", dev_err(da9063->dev, "Failed to set watchdog timeout (err = %d)\n",
ret); ret);
else else
wdd->timeout = wdt_timeout[selector]; wdd->timeout = wdt_timeout[da9063_wdt_timeout_to_sel(timeout)];
return ret; return ret;
} }
...@@ -220,10 +218,7 @@ static int da9063_wdt_probe(struct platform_device *pdev) ...@@ -220,10 +218,7 @@ static int da9063_wdt_probe(struct platform_device *pdev)
/* Change the timeout to the default value if the watchdog is running */ /* Change the timeout to the default value if the watchdog is running */
if (da9063_wdt_is_running(da9063)) { if (da9063_wdt_is_running(da9063)) {
unsigned int timeout; da9063_wdt_update_timeout(da9063, DA9063_WDG_TIMEOUT);
timeout = da9063_wdt_timeout_to_sel(DA9063_WDG_TIMEOUT);
da9063_wdt_update_timeout(da9063, timeout);
set_bit(WDOG_HW_RUNNING, &wdd->status); set_bit(WDOG_HW_RUNNING, &wdd->status);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment