diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2012-08-16 20:39:43 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-08-16 20:51:02 +0400 |
commit | c216fdeb2e7371554c56ba457c374cce9c77f91a (patch) | |
tree | 9d88b3170a5470844e61ac90a30fd923d50df14b /drivers/misc/mei/interface.h | |
parent | 248ffdf7c95726a8dae76e25fdb037899c5b77fa (diff) | |
download | linux-c216fdeb2e7371554c56ba457c374cce9c77f91a.tar.xz |
mei: wd: decouple and revamp watchdog state machine
Before ME watchdog was exported through standard watchdog interface
it was closed and started together with the mei device.
The major issue is that closing ME watchdog disabled also MEI device,
to fix this the watchdog state machine has to be independent from MEI
state machine.
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/mei/interface.h')
-rw-r--r-- | drivers/misc/mei/interface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/mei/interface.h b/drivers/misc/mei/interface.h index c1988f564aa2..ec6c785a3961 100644 --- a/drivers/misc/mei/interface.h +++ b/drivers/misc/mei/interface.h @@ -56,7 +56,7 @@ int mei_flow_ctrl_creds(struct mei_device *dev, struct mei_cl *cl); int mei_wd_send(struct mei_device *dev); -int mei_wd_stop(struct mei_device *dev, bool preserve); +int mei_wd_stop(struct mei_device *dev); int mei_wd_host_init(struct mei_device *dev); /* * mei_watchdog_register - Registering watchdog interface |