diff options
Diffstat (limited to 'arch/avr32')
-rw-r--r-- | arch/avr32/kernel/vmlinux.lds.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/avr32/kernel/vmlinux.lds.S b/arch/avr32/kernel/vmlinux.lds.S index 11f08e35a2eb..481cfd40c053 100644 --- a/arch/avr32/kernel/vmlinux.lds.S +++ b/arch/avr32/kernel/vmlinux.lds.S | |||
@@ -27,19 +27,19 @@ SECTIONS | |||
27 | __init_begin = .; | 27 | __init_begin = .; |
28 | _sinittext = .; | 28 | _sinittext = .; |
29 | *(.text.reset) | 29 | *(.text.reset) |
30 | *(.init.text) | 30 | INIT_TEXT |
31 | /* | 31 | /* |
32 | * .exit.text is discarded at runtime, not | 32 | * .exit.text is discarded at runtime, not |
33 | * link time, to deal with references from | 33 | * link time, to deal with references from |
34 | * __bug_table | 34 | * __bug_table |
35 | */ | 35 | */ |
36 | *(.exit.text) | 36 | EXIT_TEXT |
37 | _einittext = .; | 37 | _einittext = .; |
38 | . = ALIGN(4); | 38 | . = ALIGN(4); |
39 | __tagtable_begin = .; | 39 | __tagtable_begin = .; |
40 | *(.taglist.init) | 40 | *(.taglist.init) |
41 | __tagtable_end = .; | 41 | __tagtable_end = .; |
42 | *(.init.data) | 42 | INIT_DATA |
43 | . = ALIGN(16); | 43 | . = ALIGN(16); |
44 | __setup_start = .; | 44 | __setup_start = .; |
45 | *(.init.setup) | 45 | *(.init.setup) |
@@ -135,7 +135,7 @@ SECTIONS | |||
135 | * thrown away, as cleanup code is never called unless it's a module. | 135 | * thrown away, as cleanup code is never called unless it's a module. |
136 | */ | 136 | */ |
137 | /DISCARD/ : { | 137 | /DISCARD/ : { |
138 | *(.exit.data) | 138 | EXIT_DATA |
139 | *(.exitcall.exit) | 139 | *(.exitcall.exit) |
140 | } | 140 | } |
141 | 141 | ||