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 <andrew.j.ross@intel.com>
This commit is contained in:
Andy Ross 2018-09-19 09:07:00 -07:00 committed by Anas Nashif
commit 853b7345e2

View file

@ -20,7 +20,6 @@
extern "C" {
#endif
#ifndef _ASMLANGUAGE
#include <toolchain.h>
#include <zephyr/types.h>
@ -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