console: Set default loglevel to 8 (SPEW) for CONFIG_CHROMEOS
[coreboot.git] / src / include / watchdog.h
blobe8de5802ac4e374ba753c56703500271a447c61e
1 #ifndef WATCHDOG_H
2 #define WATCHDOG_H
4 #if IS_ENABLED(CONFIG_USE_WATCHDOG_ON_BOOT)
5 void watchdog_off(void);
6 #else
7 #define watchdog_off() { while (0); }
8 #endif
10 #endif /* WATCHDOG_H */