summaryrefslogtreecommitdiffstats
path: root/include/watchdog.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/watchdog.h')
-rw-r--r--include/watchdog.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/watchdog.h b/include/watchdog.h
index 6fd896734b..3e8a487a4d 100644
--- a/include/watchdog.h
+++ b/include/watchdog.h
@@ -25,6 +25,7 @@ struct watchdog {
int watchdog_register(struct watchdog *);
int watchdog_deregister(struct watchdog *);
int watchdog_set_timeout(unsigned);
+unsigned int of_get_watchdog_priority(struct device_node *node);
#else
static inline int watchdog_register(struct watchdog *w)
{
@@ -40,10 +41,13 @@ static inline int watchdog_set_timeout(unsigned t)
{
return 0;
}
+
+static inline unsigned int of_get_watchdog_priority(struct device_node *node)
+{
+ return 0;
+}
#endif
#define WATCHDOG_DEFAULT_PRIORITY 100
-unsigned int of_get_watchdog_priority(struct device_node *node);
-
#endif /* INCLUDE_WATCHDOG_H */