aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wilcox <willy@parisc-linux.org>2006-01-10 20:48:07 -0500
committerKyle McMartin <kyle@duet.int.mcmartin.ca>2006-01-10 21:53:19 -0500
commit58b6c58caef7a34eab7ec887288fa495696653e7 (patch)
treec9ac061ae8b7b9d7f6fa410ce2cc33f369ddc8ad
parentf45adcf977ac3c5512c17fd97b073bda99c81232 (diff)
[PARISC] Use STABS_DEBUG macro from vmlinux.lds.h
Cleanup vmlinux.lds.S by using STABS_DEBUG macro from vmlinux.lds.h instead of repeating the sections. Signed-off-by: Matthew Wilcox <willy@parisc-linux.org> Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
-rw-r--r--arch/parisc/kernel/vmlinux.lds.S11
1 files changed, 2 insertions, 9 deletions
diff --git a/arch/parisc/kernel/vmlinux.lds.S b/arch/parisc/kernel/vmlinux.lds.S
index b8b9174f6425..6d6436a6b624 100644
--- a/arch/parisc/kernel/vmlinux.lds.S
+++ b/arch/parisc/kernel/vmlinux.lds.S
@@ -68,7 +68,7 @@ SECTIONS
68 RODATA 68 RODATA
69 69
70 /* writeable */ 70 /* writeable */
71 . = ALIGN(4096); /* Make sure this is paged aligned so 71 . = ALIGN(4096); /* Make sure this is page aligned so
72 that we can properly leave these 72 that we can properly leave these
73 as writable */ 73 as writable */
74 data_start = .; 74 data_start = .;
@@ -198,14 +198,7 @@ SECTIONS
198#endif 198#endif
199 } 199 }
200 200
201 /* Stabs debugging sections. */ 201 STABS_DEBUG
202 .stab 0 : { *(.stab) }
203 .stabstr 0 : { *(.stabstr) }
204 .stab.excl 0 : { *(.stab.excl) }
205 .stab.exclstr 0 : { *(.stab.exclstr) }
206 .stab.index 0 : { *(.stab.index) }
207 .stab.indexstr 0 : { *(.stab.indexstr) }
208 .comment 0 : { *(.comment) }
209 .note 0 : { *(.note) } 202 .note 0 : { *(.note) }
210 203
211} 204}