From da1bfd6ffaf0feb96c9085d82e839cce687a6da5 Mon Sep 17 00:00:00 2001 From: Krzysztof Chruscinski Date: Tue, 9 Nov 2021 15:47:29 +0100 Subject: [PATCH] drivers: timer: nrf_rtc_timer: Add missing include k_timeout_t is used in the header but sys_clock.h was not included. Signed-off-by: Krzysztof Chruscinski --- include/drivers/timer/nrf_rtc_timer.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/drivers/timer/nrf_rtc_timer.h b/include/drivers/timer/nrf_rtc_timer.h index 1a0999299a2..a23589ac136 100644 --- a/include/drivers/timer/nrf_rtc_timer.h +++ b/include/drivers/timer/nrf_rtc_timer.h @@ -7,6 +7,8 @@ #ifndef ZEPHYR_INCLUDE_DRIVERS_TIMER_NRF_RTC_TIMER_H #define ZEPHYR_INCLUDE_DRIVERS_TIMER_NRF_RTC_TIMER_H +#include + #ifdef __cplusplus extern "C" { #endif