Commit e001e528 authored by Ralf Baechle's avatar Ralf Baechle

[MIPS] Replace use of stext with _stext.

Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 348c913f
...@@ -138,7 +138,6 @@ ...@@ -138,7 +138,6 @@
.fill 0x400 .fill 0x400
#endif #endif
EXPORT(stext) # used for profiling
EXPORT(_stext) EXPORT(_stext)
#ifndef CONFIG_BOOT_RAW #ifndef CONFIG_BOOT_RAW
......
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
#include <asm/page.h> #include <asm/page.h>
#include <asm/pgtable.h> #include <asm/pgtable.h>
#include <asm/r4kcache.h> #include <asm/r4kcache.h>
#include <asm/sections.h>
#include <asm/system.h> #include <asm/system.h>
#include <asm/mmu_context.h> #include <asm/mmu_context.h>
#include <asm/war.h> #include <asm/war.h>
...@@ -1010,7 +1011,6 @@ static void __init probe_pcache(void) ...@@ -1010,7 +1011,6 @@ static void __init probe_pcache(void)
*/ */
static int __init probe_scache(void) static int __init probe_scache(void)
{ {
extern unsigned long stext;
unsigned long flags, addr, begin, end, pow2; unsigned long flags, addr, begin, end, pow2;
unsigned int config = read_c0_config(); unsigned int config = read_c0_config();
struct cpuinfo_mips *c = &current_cpu_data; struct cpuinfo_mips *c = &current_cpu_data;
...@@ -1019,7 +1019,7 @@ static int __init probe_scache(void) ...@@ -1019,7 +1019,7 @@ static int __init probe_scache(void)
if (config & CONF_SC) if (config & CONF_SC)
return 0; return 0;
begin = (unsigned long) &stext; begin = (unsigned long) &_stext;
begin &= ~((4 * 1024 * 1024) - 1); begin &= ~((4 * 1024 * 1024) - 1);
end = begin + (4 * 1024 * 1024); end = begin + (4 * 1024 * 1024);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment