repo.or.cz
/
coreboot2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
mb/google/brya: Create rull variant
[coreboot2.git]
/
src
/
include
/
watchdog.h
blob
b4f591721d718015ced72584cd92c308b47e2fff
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#ifndef WATCHDOG_H
4
#define WATCHDOG_H
5
6
#if CONFIG(USE_WATCHDOG_ON_BOOT)
7
void
watchdog_off
(
void
);
8
#else
9
#define watchdog_off() { while (0); }
10
#endif
11
12
#endif
/* WATCHDOG_H */