blob: b94cd4dcd0096979960ff5a1de4485b0e46c29e4 [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
Patrick Georgi50212092013-03-11 18:32:50 +01007#define watchdog_off() while(0) {}
Stefan Reinauerde3206a2010-02-22 06:09:43 +00008#endif
9
10#endif /* WATCHDOG_H */