summaryrefslogtreecommitdiff
path: root/src/config
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2008-08-01 11:37:33 +0000
committerStefan Reinauer <stepan@openbios.org>2008-08-01 11:37:33 +0000
commitfec2c4f47fde15d4731d448faa9dfa3a3230a307 (patch)
treecc7382d283a0df19528fb8ae7140457c4dacb74d /src/config
parentbba53ed1a7dd9199f54e8cd188bbe34f83630163 (diff)
downloadcoreboot-fec2c4f47fde15d4731d448faa9dfa3a3230a307.tar.xz
fix typo in coreboot_ram.ld comment (trivial)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3446 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/config')
-rw-r--r--src/config/coreboot_ram.ld2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/coreboot_ram.ld b/src/config/coreboot_ram.ld
index 5af6e74100..2ee9ba9c55 100644
--- a/src/config/coreboot_ram.ld
+++ b/src/config/coreboot_ram.ld
@@ -98,7 +98,7 @@ SECTIONS
_estack = .;
_heap = .;
.heap . : {
- /* Reserve 256K for the heap */
+ /* Reserve HEAP_SIZE bytes for the heap */
. = HEAP_SIZE ;
. = ALIGN(4);
}