Hello.
Jordan Crouse wrote:
On 18/05/06 17:54 -0400, Clem Taylor wrote:
Maybe Jordan could try again with a fresh patch because it really does
seem to help...
Here you go, fresh out of the oven.. :)
[...]
--- a/drivers/i2c/busses/i2c-au1550.c
+++ b/drivers/i2c/busses/i2c-au1550.c
@@ -35,7 +35,15 @@ #include <linux/errno.h>
#include <linux/i2c.h>
#include <asm/mach-au1x00/au1000.h>
-#include <asm/mach-pb1x00/pb1550.h>
+#if defined(CONFIG_MIPS_PB1550)
+ #include <asm/mach-pb1x00/pb1550.h>
+#endif
+#if defined(CONFIG_MIPS_PB1200)
+ #include <asm/mach-pb1x00/pb1200.h>
+#endif
+#if defined(CONFIG_MIPS_DB1200)
+ #include <asm/mach-db1x00/db1200.h>
+#endif
Instead of all this, just #include <asm/mach-au1x00/au1xxx.h>
WBR, Sergei