aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/watchdog.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/watchdog.h b/include/linux/watchdog.h
index ac40716b44e9..1984ea610577 100644
--- a/include/linux/watchdog.h
+++ b/include/linux/watchdog.h
@@ -128,6 +128,12 @@ struct watchdog_device {
128#define WATCHDOG_NOWAYOUT_INIT_STATUS 0 128#define WATCHDOG_NOWAYOUT_INIT_STATUS 0
129#endif 129#endif
130 130
131/* Use the following function to check wether or not the watchdog is active */
132static inline bool watchdog_active(struct watchdog_device *wdd)
133{
134 return test_bit(WDOG_ACTIVE, &wdd->status);
135}
136
131/* Use the following function to set the nowayout feature */ 137/* Use the following function to set the nowayout feature */
132static inline void watchdog_set_nowayout(struct watchdog_device *wdd, bool nowayout) 138static inline void watchdog_set_nowayout(struct watchdog_device *wdd, bool nowayout)
133{ 139{