Hi Daniel, On 05/04/14 18:05, Daniel Palmer wrote: > In file included from arch/m68k/kernel/setup.c:4:0: > arch/m68k/kernel/setup_no.c:70:0: warning: "CPU_NAME" redefined [enabled by > default] > #define CPU_NAME "MC68VZ328" > ^ > arch/m68k/kernel/setup_no.c:61:0: note: this is the location of the previous > definition > #define CPU_NAME "MC68000" > ^ > > Signed-off-by: Daniel Palmer <danier...@gmail.com>
Thanks, I'll add this to the m68knommu git tree. Regards Greg > arch/m68k/kernel/setup_no.c | 13 ++++++------- > 1 file changed, 6 insertions(+), 7 deletions(-) > > diff --git a/arch/m68k/kernel/setup_no.c b/arch/m68k/kernel/setup_no.c > index 5b16f5d..88c27d9 100644 > --- a/arch/m68k/kernel/setup_no.c > +++ b/arch/m68k/kernel/setup_no.c > @@ -58,17 +58,16 @@ void (*mach_halt)(void); > void (*mach_power_off)(void); > > #ifdef CONFIG_M68000 > -#define CPU_NAME "MC68000" > -#endif > -#ifdef CONFIG_M68328 > +#if defined(CONFIG_M68328) > #define CPU_NAME "MC68328" > -#endif > -#ifdef CONFIG_M68EZ328 > +#elif defined(CONFIG_M68EZ328) > #define CPU_NAME "MC68EZ328" > -#endif > -#ifdef CONFIG_M68VZ328 > +#elif defined(CONFIG_M68VZ328) > #define CPU_NAME "MC68VZ328" > +#else > +#define CPU_NAME "MC68000" > #endif > +#endif /* CONFIG_M68000 */ > #ifdef CONFIG_M68360 > #define CPU_NAME "MC68360" > #endif > -- To unsubscribe from this list: send the line "unsubscribe linux-m68k" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html