diff options
Diffstat (limited to 'arch/sh/kernel/vmlinux_64.lds.S')
-rw-r--r-- | arch/sh/kernel/vmlinux_64.lds.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/sh/kernel/vmlinux_64.lds.S b/arch/sh/kernel/vmlinux_64.lds.S index 2fd0f7401484..3f1bd6392bb3 100644 --- a/arch/sh/kernel/vmlinux_64.lds.S +++ b/arch/sh/kernel/vmlinux_64.lds.S | |||
@@ -96,9 +96,9 @@ SECTIONS | |||
96 | . = ALIGN(PAGE_SIZE); /* Init code and data */ | 96 | . = ALIGN(PAGE_SIZE); /* Init code and data */ |
97 | __init_begin = .; | 97 | __init_begin = .; |
98 | _sinittext = .; | 98 | _sinittext = .; |
99 | .init.text : C_PHYS(.init.text) { *(.init.text) } | 99 | .init.text : C_PHYS(.init.text) { INIT_TEXT } |
100 | _einittext = .; | 100 | _einittext = .; |
101 | .init.data : C_PHYS(.init.data) { *(.init.data) } | 101 | .init.data : C_PHYS(.init.data) { INIT_DATA } |
102 | . = ALIGN(L1_CACHE_BYTES); /* Better if Cache Line aligned */ | 102 | . = ALIGN(L1_CACHE_BYTES); /* Better if Cache Line aligned */ |
103 | __setup_start = .; | 103 | __setup_start = .; |
104 | .init.setup : C_PHYS(.init.setup) { *(.init.setup) } | 104 | .init.setup : C_PHYS(.init.setup) { *(.init.setup) } |
@@ -134,8 +134,8 @@ SECTIONS | |||
134 | * .exit.text is discarded at runtime, not link time, to deal with | 134 | * .exit.text is discarded at runtime, not link time, to deal with |
135 | * references from __bug_table | 135 | * references from __bug_table |
136 | */ | 136 | */ |
137 | .exit.text : C_PHYS(.exit.text) { *(.exit.text) } | 137 | .exit.text : C_PHYS(.exit.text) { EXIT_TEXT } |
138 | .exit.data : C_PHYS(.exit.data) { *(.exit.data) } | 138 | .exit.data : C_PHYS(.exit.data) { EXIT_DATA } |
139 | 139 | ||
140 | . = ALIGN(PAGE_SIZE); | 140 | . = ALIGN(PAGE_SIZE); |
141 | .bss : C_PHYS(.bss) { | 141 | .bss : C_PHYS(.bss) { |