This patch unifies the use of config options in v2 to all start with CONFIG_
[coreboot.git] / src / include / part / watchdog.h
1 #ifndef PART_WATCHDOG_H
2 #define PART_WATCHDOG_H
3
4 #if CONFIG_USE_WATCHDOG_ON_BOOT == 1
5 void watchdog_off(void);
6 #else
7 #define watchdog_off()
8 #endif
9
10 #endif /* PART_WATCHDOG_H */