diff options
| author | David Mosberger <davidm@tiger.hpl.hp.com> | 2003-07-11 11:08:15 -0700 |
|---|---|---|
| committer | David Mosberger <davidm@tiger.hpl.hp.com> | 2003-07-11 11:08:15 -0700 |
| commit | c108d8ce4e255b16befee9e218cdc76d71fd7a46 (patch) | |
| tree | 99ad9f99d66441b83ae13b4d548275d494fe9861 /arch/ia64/kernel/init_task.c | |
| parent | a8d9d25ef30676c98ba9d3d7bc2474a02e963883 (diff) | |
ia64: Force assembly name of init_task_mem so the aliasing directive
works with all compilers.
Diffstat (limited to 'arch/ia64/kernel/init_task.c')
| -rw-r--r-- | arch/ia64/kernel/init_task.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/ia64/kernel/init_task.c b/arch/ia64/kernel/init_task.c index faa8d03bb7ad..05b2c6b580e2 100644 --- a/arch/ia64/kernel/init_task.c +++ b/arch/ia64/kernel/init_task.c @@ -2,7 +2,7 @@ * This is where we statically allocate and initialize the initial * task. * - * Copyright (C) 1999, 2002 Hewlett-Packard Co + * Copyright (C) 1999, 2002-2003 Hewlett-Packard Co * David Mosberger-Tang <davidm@hpl.hp.com> */ @@ -34,7 +34,7 @@ static union { struct thread_info thread_info; } s; unsigned long stack[KERNEL_STACK_SIZE/sizeof (unsigned long)]; -} init_task_mem __attribute__((section(".data.init_task"))) = {{ +} init_task_mem asm ("init_task_mem") __attribute__((section(".data.init_task"))) = {{ .task = INIT_TASK(init_task_mem.s.task), .thread_info = INIT_THREAD_INFO(init_task_mem.s.task) }}; |
