blob: e8de5802ac4e374ba753c56703500271a447c61e [file] [log] [blame]
Stefan Reinauerde3206a2010-02-22 06:09:43 +00001#ifndef WATCHDOG_H
2#define WATCHDOG_H
3
Martin Roth96345472017-06-24 14:13:53 -06004#if IS_ENABLED(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 */