From 853b7345e23b4e2d58525958ebc548909fe59f89 Mon Sep 17 00:00:00 2001 From: Andy Ross Date: Wed, 19 Sep 2018 09:07:00 -0700 Subject: [PATCH] sys_clock.h: Remove asm guards This header doesn't get included in assembly context, nor does it provide any asm-usable macros. Signed-off-by: Andy Ross --- include/sys_clock.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/sys_clock.h b/include/sys_clock.h index 326f1a959b2..723ff2ae650 100644 --- a/include/sys_clock.h +++ b/include/sys_clock.h @@ -20,7 +20,6 @@ extern "C" { #endif -#ifndef _ASMLANGUAGE #include #include @@ -122,8 +121,6 @@ extern volatile u64_t _sys_clock_tick_count; #define MSEC(x) (SECONDS(x) / MSEC_PER_SEC) #define USEC(x) (MSEC(x) / USEC_PER_MSEC) -#endif /* !_ASMLANGUAGE */ - #ifdef __cplusplus } #endif