From 2af6483cbfd4dc57a710744356e8e6bd7c0cd77c Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Thu, 3 Jul 2008 09:07:15 +0200 Subject: [blackfin] memory layout related compile fixes --- arch/blackfin/cpu-bf561/start.S | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'arch/blackfin/cpu-bf561/start.S') 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 #include #include +#include .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; -- cgit v1.2.3