blob: 375563d5b563a54f14c3aea2084de67dc2e16449 [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
Lee Leahyf00e4462017-03-07 13:17:49 -08007#define watchdog_off() { while (0); }
Stefan Reinauerde3206a2010-02-22 06:09:43 +00008#endif
9
10#endif /* WATCHDOG_H */