The merge of MMU and non-MMU versions of entry.S broke building for any coldfire processor with COLDFIRE_SW_A7 selected (ie 5206, 5249, 525x,...); entry.h must be included after asm-offsets.h.
Signed-off-by: Steven King <sfk...@fdwdc.com> --- arch/m68k/kernel/entry.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/m68k/kernel/entry.S b/arch/m68k/kernel/entry.S index 43e13d4..e918937 100644 --- a/arch/m68k/kernel/entry.S +++ b/arch/m68k/kernel/entry.S @@ -34,7 +34,6 @@ */ #include <linux/linkage.h> -#include <asm/entry.h> #include <asm/errno.h> #include <asm/setup.h> #include <asm/segment.h> @@ -42,6 +41,7 @@ #include <asm/unistd.h> #include <asm/asm-offsets.h> +#include <asm/entry.h> .globl system_call, buserr, trap, resume .globl sys_call_table _______________________________________________ uClinux-dev mailing list uClinux-dev@uclinux.org http://mailman.uclinux.org/mailman/listinfo/uclinux-dev This message was resent by uclinux-dev@uclinux.org To unsubscribe see: http://mailman.uclinux.org/mailman/options/uclinux-dev