From: Russell King Date: Sat, 30 Sep 2006 09:50:05 +0000 (+0100) Subject: [ARM] Fix XIP_KERNEL build error in arch/arm/mm/mmu.c X-Git-Tag: v2.6.19-rc1~214^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6ae5a6ef0340908fb7065a75231ae9980a910fbe;p=thirdparty%2Fkernel%2Flinux.git [ARM] Fix XIP_KERNEL build error in arch/arm/mm/mmu.c XIP kernels need to know the start/end of text, but we were missing the declaration of _etext in mmu.c. Add it. Signed-off-by: Russell King --- diff --git a/arch/arm/mm/mmu.c b/arch/arm/mm/mmu.c index e566cbe4b222c..f866bf6b97d4f 100644 --- a/arch/arm/mm/mmu.c +++ b/arch/arm/mm/mmu.c @@ -27,7 +27,7 @@ DEFINE_PER_CPU(struct mmu_gather, mmu_gathers); -extern void _stext, __data_start, _end; +extern void _stext, _etext, __data_start, _end; extern pgd_t swapper_pg_dir[PTRS_PER_PGD]; /*