On 09/02/2011 03:31 PM, [email protected] wrote:
From: Greg Ungerer<[email protected]>

The conditional definition of the task_thread_info() macro based on
ASM_OFFSETS_C being defined is not used. Remove it.

No, scratch this. From a clean build you need this
in place, before asm-offsets.h has been generated.

Regards
Greg


Signed-off-by: Greg Ungerer<[email protected]>
---
  arch/m68k/include/asm/thread_info.h |    6 +-----
  1 files changed, 1 insertions(+), 5 deletions(-)

diff --git a/arch/m68k/include/asm/thread_info.h 
b/arch/m68k/include/asm/thread_info.h
index e4e2159..6140b48 100644
--- a/arch/m68k/include/asm/thread_info.h
+++ b/arch/m68k/include/asm/thread_info.h
@@ -53,13 +53,9 @@ struct thread_info {
  #include<asm/current.h>
  #endif

-#ifdef ASM_OFFSETS_C
-#define task_thread_info(tsk)  ((struct thread_info *) NULL)
-#else
  #include<asm/asm-offsets.h>
-#define task_thread_info(tsk)  ((struct thread_info *)((char *)tsk+TASK_INFO))
-#endif

+#define task_thread_info(tsk)  ((struct thread_info *)((char *)tsk+TASK_INFO))
  #define init_thread_info      (init_task.thread.info)
  #define task_stack_page(tsk)  ((tsk)->stack)
  #define current_thread_info() task_thread_info(current)


--
------------------------------------------------------------------------
Greg Ungerer  --  Principal Engineer        EMAIL:     [email protected]
SnapGear Group, McAfee                      PHONE:       +61 7 3435 2888
8 Gardner Close,                            FAX:         +61 7 3891 3630
Milton, QLD, 4064, Australia                WEB: http://www.SnapGear.com
--
To unsubscribe from this list: send the line "unsubscribe linux-m68k" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to