Vladimir Serbinenko (phcoder@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10330
-gerrit
commit d56965578350bcdc9c534ab22ef7db1f50a764d8 Author: Vladimir Serbinenko phcoder@gmail.com Date: Wed May 27 09:57:35 2015 +0200
h8: Add missing include of types.h
h8.h uses u8 without including types.h.
Change-Id: I7e46f6b8ca92ed23af93597fe2f08add464eb176 Signed-off-by: Vladimir Serbinenko phcoder@gmail.com --- src/ec/lenovo/h8/h8.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/src/ec/lenovo/h8/h8.h b/src/ec/lenovo/h8/h8.h index ab56b7d..33139dc 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 <types.h> + void h8_trackpoint_enable(int on); void h8_wlan_enable(int on); void h8_set_audio_mute(int on);