unified: have __ticks_to_ms() return 0 when no system clock
Change-Id: I0834dfff2a631ef365be7ae3a55d5ad4ace3dbf5
Signed-off-by: Benjamin Walsh <benjamin.walsh@windriver.com>
diff --git a/include/kernel.h b/include/kernel.h
index 35d2837..ba7600c 100644
--- a/include/kernel.h
+++ b/include/kernel.h
@@ -240,7 +240,12 @@
static int64_t __ticks_to_ms(int64_t ticks)
{
+#if CONFIG_SYS_CLOCK_EXISTS
return (MSEC_PER_SEC * (uint64_t)ticks) / sys_clock_ticks_per_sec;
+#else
+ __ASSERT(ticks == 0, "");
+ return 0;
+#endif
}