blob: b4f591721d718015ced72584cd92c308b47e2fff [file] [log] [blame]
Martin Roth239b5df2022-07-26 22:18:26 -06001/* SPDX-License-Identifier: GPL-2.0-only */
2
Stefan Reinauerde3206a2010-02-22 06:09:43 +00003#ifndef WATCHDOG_H
4#define WATCHDOG_H
5
Julius Wernercd49cce2019-03-05 16:53:33 -08006#if CONFIG(USE_WATCHDOG_ON_BOOT)
Stefan Reinauerde3206a2010-02-22 06:09:43 +00007void watchdog_off(void);
8#else
Lee Leahyf00e4462017-03-07 13:17:49 -08009#define watchdog_off() { while (0); }
Stefan Reinauerde3206a2010-02-22 06:09:43 +000010#endif
11
12#endif /* WATCHDOG_H */