Skip to content

Commit

Permalink
misc: mei: set WDIOF_ALARMONLY on mei watchdog
Browse files Browse the repository at this point in the history
mei watchdog doesn't reboot the system it only produces event
therefore mark it as WDIOF_ALARMONLY.

This patch depends on:
commit 2bbeed0
Author: Alan Cox <alan@linux.intel.com>
watchdog: Add a flag to indicate the watchdog doesn't reboot things

Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
tomasbw authored and gregkh committed Jun 13, 2012
1 parent 169dc38 commit 49fbd3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/misc/mei/wd.c
Expand Up @@ -341,7 +341,7 @@ static const struct watchdog_ops wd_ops = {
}; };
static const struct watchdog_info wd_info = { static const struct watchdog_info wd_info = {
.identity = INTEL_AMT_WATCHDOG_ID, .identity = INTEL_AMT_WATCHDOG_ID,
.options = WDIOF_KEEPALIVEPING, .options = WDIOF_KEEPALIVEPING | WDIOF_ALARMONLY,
}; };


static struct watchdog_device amt_wd_dev = { static struct watchdog_device amt_wd_dev = {
Expand Down

0 comments on commit 49fbd3f

Please sign in to comment.