mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-27 18:25:05 +00:00
Change-Id: Ic8ffd26e61c0c3f27872699bb6aa9c39204155b7 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>
11 lines
170 B
C
11 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 */
|