From: Barry Song Date: Tue, 5 Jan 2010 07:16:32 +0000 (+0000) Subject: Blackfin: fix the section name of init_thread_union X-Git-Tag: v2.6.34-rc2~11^2~59 X-Git-Url: http://bbs.cooldavid.org/git/?a=commitdiff_plain;h=8916a1499d958fcb9086a2c49a5fa3000689bb81;p=net-next-2.6.git Blackfin: fix the section name of init_thread_union Use the common attribute rather than setting the section name directly. The common linker script defines expect the newer naming. Signed-off-by: Barry Song Signed-off-by: Mike Frysinger --- diff --git a/arch/blackfin/kernel/init_task.c b/arch/blackfin/kernel/init_task.c index 118c5b9deda..d3970e8acd1 100644 --- a/arch/blackfin/kernel/init_task.c +++ b/arch/blackfin/kernel/init_task.c @@ -28,5 +28,5 @@ EXPORT_SYMBOL(init_task); * "init_task" linker map entry. */ union thread_union init_thread_union - __attribute__ ((__section__(".init_task.data"))) = { + __init_task_data = { INIT_THREAD_INFO(init_task)};