[U-Boot] [PATCH] soft_i2c: add necessary includes for AVR32

Andreas Bießmann biessmann at corscience.de
Thu Feb 10 11:30:04 CET 2011


Signed-off-by: Andreas Bießmann <biessmann at corscience.de>
---
This patch could also go through AT91/AVR32 rework branch. Currently no
in-tree board uses soft-i2c. But when using soft-i2c and including portmux.h in
board header imximage.o complains about double definition of sync() (once in
asm/io.h and once in system unistd.h).

 drivers/i2c/soft_i2c.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/drivers/i2c/soft_i2c.c b/drivers/i2c/soft_i2c.c
index 69b5f42..e62978a 100644
--- a/drivers/i2c/soft_i2c.c
+++ b/drivers/i2c/soft_i2c.c
@@ -30,6 +30,9 @@
 #include <ioports.h>
 #include <asm/io.h>
 #endif
+#if defined(CONFIG_AVR32)
+#include <asm/arch/portmux.h>
+#endif
 #if defined(CONFIG_AT91FAMILY)
 #include <asm/io.h>
 #include <asm/arch/hardware.h>
-- 
1.7.2.3



More information about the U-Boot mailing list