diff options
Diffstat (limited to 'arch/frv')
-rw-r--r-- | arch/frv/kernel/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/frv/kernel/setup.c b/arch/frv/kernel/setup.c index 5908deae9607..1f7d65f29e78 100644 --- a/arch/frv/kernel/setup.c +++ b/arch/frv/kernel/setup.c | |||
@@ -814,7 +814,7 @@ void __init setup_arch(char **cmdline_p) | |||
814 | * - by now the stack is part of the init task */ | 814 | * - by now the stack is part of the init task */ |
815 | printk("Memory %08lx-%08lx\n", memory_start, memory_end); | 815 | printk("Memory %08lx-%08lx\n", memory_start, memory_end); |
816 | 816 | ||
817 | if (memory_start == memory_end) BUG(); | 817 | BUG_ON(memory_start == memory_end); |
818 | 818 | ||
819 | init_mm.start_code = (unsigned long) &_stext; | 819 | init_mm.start_code = (unsigned long) &_stext; |
820 | init_mm.end_code = (unsigned long) &_etext; | 820 | init_mm.end_code = (unsigned long) &_etext; |