On Thu, Jan 17, 2013 at 11:37:03AM -0600, Steven J. Hill wrote: > From: "Steven J. Hill" <sjhill@xxxxxxxx> > > Activate USE_OF for SEAD-3 platform. Add basic DTS file and convert > memory detection and reservations to use OF. Applied with this little patch on top: arch/mips/include/asm/mips-boards/generic.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arch/mips/include/asm/mips-boards/generic.h b/arch/mips/include/asm/mips-boards/generic.h index c01e286..3fc764a 100644 --- a/arch/mips/include/asm/mips-boards/generic.h +++ b/arch/mips/include/asm/mips-boards/generic.h @@ -20,6 +20,7 @@ #ifndef __ASM_MIPS_BOARDS_GENERIC_H #define __ASM_MIPS_BOARDS_GENERIC_H +#include <linux/of_fdt.h> #include <asm/addrspace.h> #include <asm/byteorder.h> #include <asm/mips-boards/bonito64.h> Otherwise including generic.h might result in an error if <linux/of_fdt.h> has not been included before. @@ -87,9 +88,7 @@ extern int mips_revision_sconid; -#ifdef CONFIG_OF extern struct boot_param_header __dtb_start; -#endif There's no need to wrap this declaration. Ralf