BUG=None BRANCH=None TEST=None Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/16390 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com> Reviewed-by: Patrick Georgi <pgeorgi@google.com> Change-Id: Ic8ffd26e61c0c3f27872699bb6aa9c39204155b7 Reviewed-on: https://chromium-review.googlesource.com/381732 Commit-Ready: Furquan Shaikh <furquan@chromium.org> Tested-by: Furquan Shaikh <furquan@chromium.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
10 lines
170 B
C
10 lines
170 B
C
#ifndef WATCHDOG_H
|
|
#define WATCHDOG_H
|
|
|
|
#if CONFIG_USE_WATCHDOG_ON_BOOT
|
|
void watchdog_off(void);
|
|
#else
|
|
#define watchdog_off() while (0) {}
|
|
#endif
|
|
|
|
#endif /* WATCHDOG_H */
|