HAOUAS Elyes (ehaouas@noos.fr) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6448
-gerrit
commit 49e824e03fcf80b2a5013968fb3a0ae6d5da1a7f Author: Elyes HAOUAS ehaouas@noos.fr Date: Fri Aug 1 14:07:11 2014 +0200
google/snow/exynos5250.h: Add missing header guard
Change-Id: I4d87db31239efd70cdec221cdff79aac0a3a76dd Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- src/mainboard/google/snow/exynos5250.h | 5 +++++ 1 file changed, 5 insertions(+)
diff --git a/src/mainboard/google/snow/exynos5250.h b/src/mainboard/google/snow/exynos5250.h index 0f71a36..4f32c16 100644 --- a/src/mainboard/google/snow/exynos5250.h +++ b/src/mainboard/google/snow/exynos5250.h @@ -17,6 +17,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+#ifndef EXYNOS5250_H +#define EXYNOS5250_H + /* I2C */ #define I2C_0_SPEED 100000 #define I2C_SLAVE 0 @@ -30,3 +33,5 @@ #define VDD_LDO3_MV 1800 // 1.8V #define VDD_LDO5_MV 1800 // 1.8V #define VDD_LDO10_MV 1800 // 1.8V + +#endif /* EXYNOS5250_H */