diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2015-05-27 09:57:35 +0200 |
---|---|---|
committer | Vladimir Serbinenko <phcoder@gmail.com> | 2015-05-29 07:45:05 +0200 |
commit | 38a6062c3550f0efefb98d2a83c9027270f55c94 (patch) | |
tree | 2b32d89eb300d6fe95dfa9b709c182cf41a2e7b3 | |
parent | 41652a9bad054041de2bb9b805d21493e6a3a70f (diff) |
h8: Add missing include of stdint.h
h8.h uses u8 without including stdint.h.
Change-Id: I7e46f6b8ca92ed23af93597fe2f08add464eb176
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/10330
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Edward O'Callaghan <edward.ocallaghan@koparo.com>
-rw-r--r-- | src/ec/lenovo/h8/h8.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ec/lenovo/h8/h8.h b/src/ec/lenovo/h8/h8.h index ab56b7df27..e726e275bd 100644 --- a/src/ec/lenovo/h8/h8.h +++ b/src/ec/lenovo/h8/h8.h @@ -20,6 +20,8 @@ #ifndef EC_LENOVO_H8_H #define EC_LENOVO_H8_H +#include <stdint.h> + void h8_trackpoint_enable(int on); void h8_wlan_enable(int on); void h8_set_audio_mute(int on); |