diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-07-28 12:45:47 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-07-31 21:35:28 +0100 |
commit | e001e52801ffb2d8dae43f26bdf67df62d312d85 (patch) | |
tree | 324fd21c695cda22eb2a491669a2f9c3b9692426 /arch/mips/mm/c-r4k.c | |
parent | 348c913f571dc1a0e7fd84d7206fc7ee983420df (diff) | |
download | linux-stable-e001e52801ffb2d8dae43f26bdf67df62d312d85.tar.gz linux-stable-e001e52801ffb2d8dae43f26bdf67df62d312d85.tar.bz2 linux-stable-e001e52801ffb2d8dae43f26bdf67df62d312d85.zip |
[MIPS] Replace use of stext with _stext.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mm/c-r4k.c')
-rw-r--r-- | arch/mips/mm/c-r4k.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/mm/c-r4k.c b/arch/mips/mm/c-r4k.c index be96231dccb6..bad571971bf6 100644 --- a/arch/mips/mm/c-r4k.c +++ b/arch/mips/mm/c-r4k.c @@ -23,6 +23,7 @@ #include <asm/page.h> #include <asm/pgtable.h> #include <asm/r4kcache.h> +#include <asm/sections.h> #include <asm/system.h> #include <asm/mmu_context.h> #include <asm/war.h> @@ -1010,7 +1011,6 @@ static void __init probe_pcache(void) */ static int __init probe_scache(void) { - extern unsigned long stext; unsigned long flags, addr, begin, end, pow2; unsigned int config = read_c0_config(); struct cpuinfo_mips *c = ¤t_cpu_data; @@ -1019,7 +1019,7 @@ static int __init probe_scache(void) if (config & CONF_SC) return 0; - begin = (unsigned long) &stext; + begin = (unsigned long) &_stext; begin &= ~((4 * 1024 * 1024) - 1); end = begin + (4 * 1024 * 1024); |