mb/google/fatcat: Create francka variant
[coreboot.git] / src / include / watchdog.h
blobb4f591721d718015ced72584cd92c308b47e2fff
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef WATCHDOG_H
4 #define WATCHDOG_H
6 #if CONFIG(USE_WATCHDOG_ON_BOOT)
7 void watchdog_off(void);
8 #else
9 #define watchdog_off() { while (0); }
10 #endif
12 #endif /* WATCHDOG_H */