summaryrefslogtreecommitdiff
path: root/chip/lm4/watchdog.c
diff options
context:
space:
mode:
Diffstat (limited to 'chip/lm4/watchdog.c')
-rw-r--r--chip/lm4/watchdog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/chip/lm4/watchdog.c b/chip/lm4/watchdog.c
index 56f051bcd8..565ce69fd4 100644
--- a/chip/lm4/watchdog.c
+++ b/chip/lm4/watchdog.c
@@ -82,7 +82,7 @@ DECLARE_HOOK(HOOK_TICK, watchdog_reload, HOOK_PRIO_DEFAULT);
static void watchdog_freq_changed(void)
{
/* Set the timeout period */
- watchdog_period = WATCHDOG_PERIOD_MS * (clock_get_freq() / 1000);
+ watchdog_period = CONFIG_WATCHDOG_PERIOD_MS * (clock_get_freq() / 1000);
/* Reload the watchdog timer now */
watchdog_reload();