diff options
author | Xu Wang <gesaint@linux.vnet.ibm.com> | 2015-03-06 03:26:29 -0500 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2015-03-25 06:49:41 -0400 |
commit | 9ec6cb80c8752db70174d3f67d33243fbab05014 (patch) | |
tree | 31110112e9c366e8a0b958ea833df1895ca0fb0b /drivers/watchdog | |
parent | a5fd8ddce2af98c7f8199d37a0b866e98f4c0de0 (diff) |
s390/watchdog: enable KEEPALIVE for /dev/watchdog
There's no reason why we wouldn't want to be able to send a keep alive
message to /dev/watchdog (feed dog) for the s390 diag288 watchdog, so
let's enable the WDIOF_KEEPALIVEPING option.
Signed-off-by: Xu Wang <gesaint@linux.vnet.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r-- | drivers/watchdog/diag288_wdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/diag288_wdt.c b/drivers/watchdog/diag288_wdt.c index 429494b6c822..480cedd41d09 100644 --- a/drivers/watchdog/diag288_wdt.c +++ b/drivers/watchdog/diag288_wdt.c | |||
@@ -202,7 +202,7 @@ static struct watchdog_ops wdt_ops = { | |||
202 | }; | 202 | }; |
203 | 203 | ||
204 | static struct watchdog_info wdt_info = { | 204 | static struct watchdog_info wdt_info = { |
205 | .options = WDIOF_SETTIMEOUT | WDIOF_MAGICCLOSE, | 205 | .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE, |
206 | .firmware_version = 0, | 206 | .firmware_version = 0, |
207 | .identity = "z Watchdog", | 207 | .identity = "z Watchdog", |
208 | }; | 208 | }; |