dect
/
linux-2.6
Archived
13
0
Fork 0

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 <barry.song@analog.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
Barry Song 2010-01-05 07:16:32 +00:00 committed by Mike Frysinger
parent 6feda3a653
commit 8916a1499d
1 changed files with 1 additions and 1 deletions

View File

@ -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)};