repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ec/google/chromeec: Update Tablet event call
[coreboot.git]
/
src
/
include
/
watchdog.h
blob
e8de5802ac4e374ba753c56703500271a447c61e
1
#ifndef WATCHDOG_H
2
#define WATCHDOG_H
3
4
#if IS_ENABLED(CONFIG_USE_WATCHDOG_ON_BOOT)
5
void
watchdog_off
(
void
);
6
#else
7
#define watchdog_off() { while (0); }
8
#endif
9
10
#endif
/* WATCHDOG_H */