Alexandru Gagniuc (alexandrux.gagniuc@intel.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14589
-gerrit
commit 96fc8b4f4e49ca249f0897a4cd04b0772a437da0 Author: Alexandru Gagniuc alexandrux.gagniuc@intel.com Date: Tue Apr 26 14:53:46 2016 -0700
ec/google/chromeec/ec_commands.h: Include stdint.h
This file use stdint types, but does not include the appropriate header. This creates a parasitic dependency on including stdint.h before ec_commands.h. Fix that by including the necesarry header.
Change-Id: I52477028c4ba8f6ffad0356c09e5fad4972649ed Signed-off-by: Alexandru Gagniuc alexandrux.gagniuc@intel.com --- src/ec/google/chromeec/ec_commands.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/src/ec/google/chromeec/ec_commands.h b/src/ec/google/chromeec/ec_commands.h index a90e22d..b562dd6 100644 --- a/src/ec/google/chromeec/ec_commands.h +++ b/src/ec/google/chromeec/ec_commands.h @@ -346,6 +346,8 @@ */ #ifndef __ACPI__
+#include <stdint.h> + /* * Define __packed if someone hasn't beat us to it. Linux kernel style * checking prefers __packed over __attribute__((packed)).