xref: /aosp_15_r20/external/coreboot/src/include/watchdog.h (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef WATCHDOG_H
4 #define WATCHDOG_H
5 
6 #if CONFIG(USE_WATCHDOG_ON_BOOT)
7 void watchdog_off(void);
8 #else
9 #define watchdog_off() { while (0); }
10 #endif
11 
12 #endif /* WATCHDOG_H */
13