hi, this patch changes if() BUG(); to BUG_ON(); in arch/frv/kernel/setup.c Signed-off-by: Eric Sesterhenn --- linux-2.6.15-git11/arch/frv/kernel/setup.c.orig 2006-01-16 21:58:43.000000000 +0100 +++ linux-2.6.15-git11/arch/frv/kernel/setup.c 2006-01-16 21:58:58.000000000 +0100 @@ -814,7 +814,7 @@ void __init setup_arch(char **cmdline_p) * - by now the stack is part of the init task */ printk("Memory %08lx-%08lx\n", memory_start, memory_end); - if (memory_start == memory_end) BUG(); + BUG_ON(memory_start == memory_end); init_mm.start_code = (unsigned long) &_stext; init_mm.end_code = (unsigned long) &_etext;