[PATCH] m68k: fix reference to init_task in vmlinux-sun3.lds

it's *(.data.init_task), not init_task...

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Cc: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Al Viro and committed by Linus Torvalds 54a5a6eb a763be5c

+1 -1
+1 -1
arch/m68k/kernel/vmlinux-sun3.lds
··· 67 __initramfs_end = .; 68 . = ALIGN(8192); 69 __init_end = .; 70 - .init.task : { *(init_task) } 71 72 73 .bss : { *(.bss) } /* BSS */
··· 67 __initramfs_end = .; 68 . = ALIGN(8192); 69 __init_end = .; 70 + .data.init.task : { *(.data.init_task) } 71 72 73 .bss : { *(.bss) } /* BSS */