summaryrefslogtreecommitdiffstats
path: root/drivers/watchdog/pnx4008_wdt.c
diff options
context:
space:
mode:
authorWim Van Sebroeck2012-02-29 20:20:58 +0100
committerWim Van Sebroeck2012-03-27 20:08:09 +0200
commit0197c1c49ef1ff386b2ebb6d3b0fc85a8e174b5c (patch)
tree266ad74d44c332e27eac61070f7287051035136f /drivers/watchdog/pnx4008_wdt.c
parentwatchdog: watchdog_dev: Let the driver update the timeout field on set_timeou... (diff)
downloadkernel-qcow2-linux-0197c1c49ef1ff386b2ebb6d3b0fc85a8e174b5c.tar.gz
kernel-qcow2-linux-0197c1c49ef1ff386b2ebb6d3b0fc85a8e174b5c.tar.xz
kernel-qcow2-linux-0197c1c49ef1ff386b2ebb6d3b0fc85a8e174b5c.zip
watchdog: fix set_timeout operations
Since we changed the behaviour of the set_timeout operation in the watchdog API, we need to change the allready converted drivers so that they update the timeout field at the end of the set_timeout operation. Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog/pnx4008_wdt.c')
-rw-r--r--drivers/watchdog/pnx4008_wdt.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/watchdog/pnx4008_wdt.c b/drivers/watchdog/pnx4008_wdt.c
index 3d9bb89776a7..6b8432f61d05 100644
--- a/drivers/watchdog/pnx4008_wdt.c
+++ b/drivers/watchdog/pnx4008_wdt.c
@@ -121,6 +121,7 @@ static int pnx4008_wdt_stop(struct watchdog_device *wdd)
static int pnx4008_wdt_set_timeout(struct watchdog_device *wdd,
unsigned int new_timeout)
{
+ wdd->timeout = new_timeout;
return 0;
}