This is an automated email from the ASF dual-hosted git repository. aguettouche pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit fead8d2034ddfc182642aeae30ad8b85746022d3 Author: Masayuki Ishikawa <[email protected]> AuthorDate: Fri Aug 7 13:27:41 2020 +0900 arch: cxd56xx: Fix cxd56_rtc.c when compiled with CONFIG_RTC_HIRES=y Summary: - This commit fixes compile errors Impact: - This commit affects cxd56_rtc.c only Testing: - spresense:wifi with CONFIG_RTC_HIRES=y Signed-off-by: Masayuki Ishikawa <[email protected]> --- arch/arm/src/cxd56xx/cxd56_rtc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/src/cxd56xx/cxd56_rtc.c b/arch/arm/src/cxd56xx/cxd56_rtc.c index ab4414a..44513d4 100644 --- a/arch/arm/src/cxd56xx/cxd56_rtc.c +++ b/arch/arm/src/cxd56xx/cxd56_rtc.c @@ -52,6 +52,7 @@ #include <arch/board/board.h> +#include "clock/clock.h" #include "arm_arch.h" #include "cxd56_rtc.h"
