summaryrefslogtreecommitdiffstats
path: root/nuttx/arch/arm/src/lpc214x
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2008-11-13 20:37:02 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2008-11-13 20:37:02 +0000
commitc8f18c83498a155ae06f46fcc6a6e53575888b46 (patch)
tree0cbda2a97aab3abb0c68309cd073503b792b3d83 /nuttx/arch/arm/src/lpc214x
parent0301c145a18a7c0f2e443ea6a89f5eabf9c6f7e0 (diff)
Change configuration name
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@1226 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/arch/arm/src/lpc214x')
-rw-r--r--nuttx/arch/arm/src/lpc214x/lpc214x_head.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/arch/arm/src/lpc214x/lpc214x_head.S b/nuttx/arch/arm/src/lpc214x/lpc214x_head.S
index 9f90113fc8..140f33e74c 100644
--- a/nuttx/arch/arm/src/lpc214x/lpc214x_head.S
+++ b/nuttx/arch/arm/src/lpc214x/lpc214x_head.S
@@ -592,14 +592,14 @@ __start:
* _sbss is the start of the BSS region (see ld.script)
* _ebss is the end of the BSS regsion (see ld.script)
* The idle task stack starts at the end of BSS and is
- * of size CONFIG_PROC_STACK_SIZE. The heap continues
+ * of size CONFIG_IDLETHREAD_STACKSIZE. The heap continues
* from there until the end of memory. See g_heapbase
* below.
*/
LC0: .long _sbss
.long _ebss
- .long _ebss+CONFIG_PROC_STACK_SIZE-4
+ .long _ebss+CONFIG_IDLETHREAD_STACKSIZE-4
#ifdef CONFIG_BOOT_FROM_FLASH
LC2: .long _eronly /* Where .data defaults are stored in FLASH */
@@ -618,7 +618,7 @@ LC2: .long _eronly /* Where .data defaults are stored in FLASH */
.globl g_heapbase
.type g_heapbase, object
g_heapbase:
- .long _ebss+CONFIG_PROC_STACK_SIZE
+ .long _ebss+CONFIG_IDLETHREAD_STACKSIZE
.size g_heapbase, .-g_heapbase
.end