diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2007-05-08 07:39:37 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2007-05-08 07:39:37 -0400 |
commit | 4efb4482729d2cc7926f49f997a28370e701073f (patch) | |
tree | 5faf5e928e62d8cf5951664d7ce6247f8ac5d8d7 /arch/arm/kernel/vmlinux.lds.S | |
parent | b9811d7fde6136bb3dc78dd4f4dd4f54be725b25 (diff) |
[ARM] Shut up warning about init_thread_union
Fix false warning:
WARNING: arch/arm/kernel/init_task.o - Section mismatch:
reference to .init.task:init_thread_union from .data between
'init_task' (at offset 0x4) and 'init_sighand'
caused by the section name starting with ".init".
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/kernel/vmlinux.lds.S')
-rw-r--r-- | arch/arm/kernel/vmlinux.lds.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/kernel/vmlinux.lds.S b/arch/arm/kernel/vmlinux.lds.S index 6be67296f333..faf32de5c5ad 100644 --- a/arch/arm/kernel/vmlinux.lds.S +++ b/arch/arm/kernel/vmlinux.lds.S | |||
@@ -119,7 +119,7 @@ SECTIONS | |||
119 | * first, the init task union, aligned | 119 | * first, the init task union, aligned |
120 | * to an 8192 byte boundary. | 120 | * to an 8192 byte boundary. |
121 | */ | 121 | */ |
122 | *(.init.task) | 122 | *(.data.init_task) |
123 | 123 | ||
124 | #ifdef CONFIG_XIP_KERNEL | 124 | #ifdef CONFIG_XIP_KERNEL |
125 | . = ALIGN(4096); | 125 | . = ALIGN(4096); |