summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--board/zinger/board.h1
-rw-r--r--include/config.h3
-rw-r--r--include/watchdog.h3
3 files changed, 4 insertions, 3 deletions
diff --git a/board/zinger/board.h b/board/zinger/board.h
index 610fedf7c6..b0dd0b1199 100644
--- a/board/zinger/board.h
+++ b/board/zinger/board.h
@@ -22,6 +22,7 @@
#define CONFIG_HW_CRC
#define CONFIG_SHA1
#undef CONFIG_WATCHDOG_HELP
+#define CONFIG_WATCHDOG_PERIOD_MS 1800
#undef CONFIG_LID_SWITCH
#undef CONFIG_TASK_PROFILING
#undef CONFIG_COMMON_GPIO
diff --git a/include/config.h b/include/config.h
index 8c77772c7c..be01bc87ae 100644
--- a/include/config.h
+++ b/include/config.h
@@ -931,6 +931,9 @@
*/
#undef CONFIG_WATCHDOG_HELP
+/* Watchdog period in ms; must be at least twice HOOK_TICK_INTERVAL */
+#define WATCHDOG_PERIOD_MS 1100
+
/*****************************************************************************/
/*
diff --git a/include/watchdog.h b/include/watchdog.h
index 1981e3ce10..1853a3a87b 100644
--- a/include/watchdog.h
+++ b/include/watchdog.h
@@ -8,9 +8,6 @@
#ifndef __CROS_EC_WATCHDOG_H
#define __CROS_EC_WATCHDOG_H
-/* Watchdog period in ms; must be at least twice HOOK_TICK_INTERVAL */
-#define WATCHDOG_PERIOD_MS 1100
-
/**
* Initialize the watchdog.
*