diff options
Diffstat (limited to 'arch/cris/arch-v10/vmlinux.lds.S')
-rw-r--r-- | arch/cris/arch-v10/vmlinux.lds.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/cris/arch-v10/vmlinux.lds.S b/arch/cris/arch-v10/vmlinux.lds.S index 97a7876ed681..93c9f0ea286b 100644 --- a/arch/cris/arch-v10/vmlinux.lds.S +++ b/arch/cris/arch-v10/vmlinux.lds.S | |||
@@ -57,10 +57,10 @@ SECTIONS | |||
57 | __init_begin = .; | 57 | __init_begin = .; |
58 | .init.text : { | 58 | .init.text : { |
59 | _sinittext = .; | 59 | _sinittext = .; |
60 | *(.init.text) | 60 | INIT_TEXT |
61 | _einittext = .; | 61 | _einittext = .; |
62 | } | 62 | } |
63 | .init.data : { *(.init.data) } | 63 | .init.data : { INIT_DATA } |
64 | . = ALIGN(16); | 64 | . = ALIGN(16); |
65 | __setup_start = .; | 65 | __setup_start = .; |
66 | .init.setup : { *(.init.setup) } | 66 | .init.setup : { *(.init.setup) } |
@@ -109,8 +109,8 @@ SECTIONS | |||
109 | 109 | ||
110 | /* Sections to be discarded */ | 110 | /* Sections to be discarded */ |
111 | /DISCARD/ : { | 111 | /DISCARD/ : { |
112 | *(.text.exit) | 112 | EXIT_TEXT |
113 | *(.data.exit) | 113 | EXIT_DATA |
114 | *(.exitcall.exit) | 114 | *(.exitcall.exit) |
115 | } | 115 | } |
116 | 116 | ||