blob: 8514158ded1eb3ac83f1402f9765cd160e7f8de8 [file] [log] [blame]
Stefan Reinauerde3206a2010-02-22 06:09:43 +00001#ifndef WATCHDOG_H
2#define WATCHDOG_H
3
Patrick Georgie1667822012-05-05 15:29:32 +02004#if CONFIG_USE_WATCHDOG_ON_BOOT
Stefan Reinauerde3206a2010-02-22 06:09:43 +00005void watchdog_off(void);
6#else
Elyes HAOUAS8ffd0502016-09-01 19:01:41 +02007#define watchdog_off() while (0) {}
Stefan Reinauerde3206a2010-02-22 06:09:43 +00008#endif
9
10#endif /* WATCHDOG_H */