Skip to content

Commit

Permalink
[PATCH] m68k: fix reference to init_task in vmlinux-sun3.lds
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Al Viro authored and Linus Torvalds committed Jan 12, 2006
1 parent a763be5 commit 54a5a6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/m68k/kernel/vmlinux-sun3.lds
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ __init_begin = .;
__initramfs_end = .;
. = ALIGN(8192);
__init_end = .;
.init.task : { *(init_task) }
.data.init.task : { *(.data.init_task) }


.bss : { *(.bss) } /* BSS */
Expand Down

0 comments on commit 54a5a6e

Please sign in to comment.