Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 49fbd3f1 authored by Tomas Winkler's avatar Tomas Winkler Committed by Greg Kroah-Hartman
Browse files

misc: mei: set WDIOF_ALARMONLY on mei watchdog



mei watchdog doesn't reboot the system it only produces event
therefore mark it as WDIOF_ALARMONLY.

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

Signed-off-by: default avatarTomas Winkler <tomas.winkler@intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 169dc388
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -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 = {