diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2006-09-30 05:50:05 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-09-30 05:50:05 -0400 |
commit | 6ae5a6ef0340908fb7065a75231ae9980a910fbe (patch) | |
tree | 3079ed2b2f3102aacb81d8fee2a72cf50c2a6464 /arch/arm | |
parent | e0af79cd52334c586d058253b7d32ce74434de26 (diff) |
[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 <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mm/mmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mm/mmu.c b/arch/arm/mm/mmu.c index e566cbe4b222..f866bf6b97d4 100644 --- a/arch/arm/mm/mmu.c +++ b/arch/arm/mm/mmu.c | |||
@@ -27,7 +27,7 @@ | |||
27 | 27 | ||
28 | DEFINE_PER_CPU(struct mmu_gather, mmu_gathers); | 28 | DEFINE_PER_CPU(struct mmu_gather, mmu_gathers); |
29 | 29 | ||
30 | extern void _stext, __data_start, _end; | 30 | extern void _stext, _etext, __data_start, _end; |
31 | extern pgd_t swapper_pg_dir[PTRS_PER_PGD]; | 31 | extern pgd_t swapper_pg_dir[PTRS_PER_PGD]; |
32 | 32 | ||
33 | /* | 33 | /* |