• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 */
13