diff options
| author | Andrew Morton <akpm@osdl.org> | 2004-01-07 05:56:59 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.osdl.org> | 2004-01-07 05:56:59 -0800 |
| commit | 7731282b01ca4722bdaad212cdeb38a070364fe1 (patch) | |
| tree | 191fe24dc2832063f8e90fc4acf149afdc88df94 | |
| parent | 81d2e766100b6bc311be63a961422956aecf6ce4 (diff) | |
[PATCH] ppc64: Add missing section definition
From: Anton Blanchard <anton@samba.org>
For a laugh we moved the BSS and our world exploded. Turns out we zero
from __bss_start to _end. Add __bss_stop to our section definitions so
we can use it instead.
| -rw-r--r-- | include/asm-generic/sections.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-generic/sections.h b/include/asm-generic/sections.h index ce400f39ba25..40b935fa003f 100644 --- a/include/asm-generic/sections.h +++ b/include/asm-generic/sections.h @@ -5,7 +5,7 @@ extern char _text[], _stext[], _etext[]; extern char _data[], _sdata[], _edata[]; -extern char __bss_start[]; +extern char __bss_start[], __bss_stop[]; extern char __init_begin[], __init_end[]; extern char _sinittext[], _einittext[]; |
