diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2007-05-08 12:39:37 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2007-05-08 12:39:37 +0100 |
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 6be67296f33..faf32de5c5a 100644 --- a/arch/arm/kernel/vmlinux.lds.S +++ b/arch/arm/kernel/vmlinux.lds.S @@ -119,7 +119,7 @@ SECTIONS * first, the init task union, aligned * to an 8192 byte boundary. */ - *(.init.task) + *(.data.init_task) #ifdef CONFIG_XIP_KERNEL . = ALIGN(4096); |