9634547eae
Change-Id: I2fbe6376a1cf98d328464556917638a5679641d2 Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/20354 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
10 lines
184 B
C
10 lines
184 B
C
#ifndef WATCHDOG_H
|
|
#define WATCHDOG_H
|
|
|
|
#if IS_ENABLED(CONFIG_USE_WATCHDOG_ON_BOOT)
|
|
void watchdog_off(void);
|
|
#else
|
|
#define watchdog_off() { while (0); }
|
|
#endif
|
|
|
|
#endif /* WATCHDOG_H */
|