aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86_64/unwind.h
diff options
context:
space:
mode:
authorAndi Kleen <ak@suse.de>2006-09-26 04:52:42 -0400
committerAndi Kleen <andi@basil.nowhere.org>2006-09-26 04:52:42 -0400
commitb89ebd0b0a65d5371aa9ad98e873c4616056ca68 (patch)
tree7205fc3c9174f4f48d3fd59b86d99dfd66d5dfd3 /include/asm-x86_64/unwind.h
parent0637a70a5db98182d9ad3d6ae1ee30acf20afde9 (diff)
[PATCH] Fix unwinder warning in traps.c
Fix linux/arch/x86_64/kernel/traps.c: In function 'dump_trace': linux/arch/x86_64/kernel/traps.c:275: warning: cast to pointer from integer of different size with allnoconfig Cc: jbeulich@novell.com Signed-off-by: Andi Kleen <ak@suse.de>
Diffstat (limited to 'include/asm-x86_64/unwind.h')
-rw-r--r--include/asm-x86_64/unwind.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-x86_64/unwind.h b/include/asm-x86_64/unwind.h
index b8fa5cb7ff88..2e7ff10fd775 100644
--- a/include/asm-x86_64/unwind.h
+++ b/include/asm-x86_64/unwind.h
@@ -99,8 +99,8 @@ static inline int arch_unw_user_mode(const struct unwind_frame_info *info)
99 99
100#else 100#else
101 101
102#define UNW_PC(frame) ((void)(frame), 0) 102#define UNW_PC(frame) ((void)(frame), 0UL)
103#define UNW_SP(frame) ((void)(frame), 0) 103#define UNW_SP(frame) ((void)(frame), 0UL)
104 104
105static inline int arch_unw_user_mode(const void *info) 105static inline int arch_unw_user_mode(const void *info)
106{ 106{