summaryrefslogtreecommitdiffstats
path: root/arch/blackfin/cpu-bf561/start.S
diff options
context:
space:
mode:
Diffstat (limited to 'arch/blackfin/cpu-bf561/start.S')
-rw-r--r--arch/blackfin/cpu-bf561/start.S6
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/blackfin/cpu-bf561/start.S b/arch/blackfin/cpu-bf561/start.S
index 99b106d98a..81efff09b6 100644
--- a/arch/blackfin/cpu-bf561/start.S
+++ b/arch/blackfin/cpu-bf561/start.S
@@ -34,6 +34,7 @@
#include <asm/blackfin.h>
#include <asm/cpu/defBF561_extn.h>
#include <asm/cpu/defBF561.h>
+#include <asm-generic/memory_layout.h>
.section ".text_entry","ax"
@@ -173,8 +174,9 @@ loop1:
/*
* configure STACK
*/
- r0.h = hi(CONFIG_STACKBASE);
- r0.l = lo(CONFIG_STACKBASE);
+
+ r0.h = hi(STACK_BASE);
+ r0.l = lo(STACK_BASE);
sp = r0;
fp = sp;