HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/44735 )
Change subject: include/timer.h: Add missing include ......................................................................
include/timer.h: Add missing include
DIV_ROUND_UP needs <commonlib/bsd/helpers.h>
Change-Id: Ifa425b22cc09b6c207cbe6e6bda4e339f99d7786 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/include/timer.h 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/35/44735/1
diff --git a/src/include/timer.h b/src/include/timer.h index 0bb8666..f414dae 100644 --- a/src/include/timer.h +++ b/src/include/timer.h @@ -2,6 +2,8 @@ #ifndef TIMER_H #define TIMER_H
+#include <commonlib/bsd/helpers.h> + #define NSECS_PER_SEC 1000000000 #define USECS_PER_SEC 1000000 #define MSECS_PER_SEC 1000