]> git.karo-electronics.de Git - karo-tx-linux.git/commit
watchdog: core: Make dt "timeout-sec" property work on drivers w/out min/max
authorDoug Anderson <dianders@chromium.org>
Tue, 26 Nov 2013 18:22:52 +0000 (10:22 -0800)
committerWim Van Sebroeck <wim@iguana.be>
Mon, 23 Dec 2013 18:59:14 +0000 (19:59 +0100)
commitf91bf0d48efe64fa62f42808244d1c27b9134015
tree13b2cffe33269f5aedd16f3ff56c82bb61649910
parent4ab0bdc86b9e9dfbf762f424a231e29048fee8b1
watchdog: core: Make dt "timeout-sec" property work on drivers w/out min/max

It is valid for a watchdog driver to have 0 for a "min" and "max"
timeout if the driver doesn't need the core to enforce the concepts of
min and max.  The s3c2410_wdt driver is one such driver.  Specifically
it can be hard for that driver to come up with a static "max" on all
platforms without a lot more information since the input clock on
S3C2410 and S3C2440 can change with DVFS.

As written, watchdog_init_timeout() will not ever read "timeout-sec"
on these drivers since watchdog_timeout_invalid() will _never_ return
true.  Change to not consider a timeout_parm of 0 as valid even if
min/max aren't specified by the driver.  Also handle the case when
there is no min/max and no "timeout-sec" property.

Signed-off-by: Doug Anderson <dianders@chromium.org>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
drivers/watchdog/watchdog_core.c