coreboot-kgpe-d16/src/include/watchdog.h

11 lines
157 B
C
Raw Normal View History

#ifndef WATCHDOG_H
#define WATCHDOG_H
#if CONFIG_USE_WATCHDOG_ON_BOOT
void watchdog_off(void);
#else
#define watchdog_off()
#endif
#endif /* WATCHDOG_H */