Alexandru Gagniuc (mr.nuke.me@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5470
-gerrit
commit f568362b1d1f18550612c08686d768ea6c25df03 Author: Alexandru Gagniuc mr.nuke.me@gmail.com Date: Sun Apr 6 23:48:44 2014 -0500
ec/compal/ene932/ec.h: Include stdint.h (TRIVIAL)
It's needed for definitions of 'u8'.
Change-Id: I7ffa8e8f807e7d8a778eb80c12a0dc984bdb3f8b Signed-off-by: Alexandru Gagniuc mr.nuke.me@gmail.com --- src/ec/compal/ene932/ec.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/src/ec/compal/ene932/ec.h b/src/ec/compal/ene932/ec.h index 879925f..a1f4544 100644 --- a/src/ec/compal/ene932/ec.h +++ b/src/ec/compal/ene932/ec.h @@ -24,6 +24,8 @@ #ifndef _EC_COMPAL_ENE932_EC_H #define _EC_COMPAL_ENE932_EC_H
+#include <stdint.h> + #define EC_IO 0xfd60 /* Mainboard specific. Could be Kconfig option */ #define EC_IO_HIGH EC_IO + 1 #define EC_IO_LOW EC_IO + 2