Sign in
android
/
platform
/
external
/
coreboot
/
4affdcea86fddb05b59cd8eda9183dc5ee1ee8bb
/
.
/
src
/
include
/
watchdog.h
blob: b4f591721d718015ced72584cd92c308b47e2fff [
file
]
/* SPDX-License-Identifier: GPL-2.0-only */
#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 */