diff options
Diffstat (limited to 'arch/m32r')
-rw-r--r-- | arch/m32r/kernel/vmlinux.lds.S | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/m32r/kernel/vmlinux.lds.S b/arch/m32r/kernel/vmlinux.lds.S index 942a8c7a4417..41b07854fcc6 100644 --- a/arch/m32r/kernel/vmlinux.lds.S +++ b/arch/m32r/kernel/vmlinux.lds.S | |||
@@ -76,10 +76,10 @@ SECTIONS | |||
76 | __init_begin = .; | 76 | __init_begin = .; |
77 | .init.text : { | 77 | .init.text : { |
78 | _sinittext = .; | 78 | _sinittext = .; |
79 | *(.init.text) | 79 | INIT_TEXT |
80 | _einittext = .; | 80 | _einittext = .; |
81 | } | 81 | } |
82 | .init.data : { *(.init.data) } | 82 | .init.data : { INIT_DATA } |
83 | . = ALIGN(16); | 83 | . = ALIGN(16); |
84 | __setup_start = .; | 84 | __setup_start = .; |
85 | .init.setup : { *(.init.setup) } | 85 | .init.setup : { *(.init.setup) } |
@@ -100,8 +100,8 @@ SECTIONS | |||
100 | .altinstr_replacement : { *(.altinstr_replacement) } | 100 | .altinstr_replacement : { *(.altinstr_replacement) } |
101 | /* .exit.text is discard at runtime, not link time, to deal with references | 101 | /* .exit.text is discard at runtime, not link time, to deal with references |
102 | from .altinstructions and .eh_frame */ | 102 | from .altinstructions and .eh_frame */ |
103 | .exit.text : { *(.exit.text) } | 103 | .exit.text : { EXIT_TEXT } |
104 | .exit.data : { *(.exit.data) } | 104 | .exit.data : { EXIT_DATA } |
105 | 105 | ||
106 | #ifdef CONFIG_BLK_DEV_INITRD | 106 | #ifdef CONFIG_BLK_DEV_INITRD |
107 | . = ALIGN(4096); | 107 | . = ALIGN(4096); |
@@ -124,8 +124,8 @@ SECTIONS | |||
124 | 124 | ||
125 | /* Sections to be discarded */ | 125 | /* Sections to be discarded */ |
126 | /DISCARD/ : { | 126 | /DISCARD/ : { |
127 | *(.exit.text) | 127 | EXIT_TEXT |
128 | *(.exit.data) | 128 | EXIT_DATA |
129 | *(.exitcall.exit) | 129 | *(.exitcall.exit) |
130 | } | 130 | } |
131 | 131 | ||