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>
Reviewed-on: https://review.coreboot.org/14589
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Alexandru Gagniuc 2016-04-26 14:53:46 -07:00 committed by Martin Roth
parent 5ff7031f72
commit 0d3a5126db
1 changed files with 2 additions and 0 deletions

View File

@ -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)).