diff options
author | Tony Luck <tony.luck@intel.com> | 2011-04-07 14:05:56 -0400 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2011-04-07 14:05:56 -0400 |
commit | ff00c2a5b2308219ab952d01e5bb17b9ea772d7e (patch) | |
tree | d1257157d162233db48386f92e4dd9d24a5d7272 /arch/ia64/oprofile | |
parent | 6221f222c0ebf1acdf7abcf927178f40e1a65e2a (diff) |
[IA64] fix build warning in arch/ia64/oprofile/backtrace.c
arch/ia64/oprofile/backtrace.c:63: warning: comparison of distinct pointer types lacks a cast
Comparing a "u64 *" with an "unsigned long *". Make them match.
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/oprofile')
-rw-r--r-- | arch/ia64/oprofile/backtrace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/oprofile/backtrace.c b/arch/ia64/oprofile/backtrace.c index 5cdd7e4a597c..f7b798993cea 100644 --- a/arch/ia64/oprofile/backtrace.c +++ b/arch/ia64/oprofile/backtrace.c | |||
@@ -29,7 +29,7 @@ typedef struct | |||
29 | unsigned int depth; | 29 | unsigned int depth; |
30 | struct pt_regs *regs; | 30 | struct pt_regs *regs; |
31 | struct unw_frame_info frame; | 31 | struct unw_frame_info frame; |
32 | u64 *prev_pfs_loc; /* state for WAR for old spinlock ool code */ | 32 | unsigned long *prev_pfs_loc; /* state for WAR for old spinlock ool code */ |
33 | } ia64_backtrace_t; | 33 | } ia64_backtrace_t; |
34 | 34 | ||
35 | /* Returns non-zero if the PC is in the Interrupt Vector Table */ | 35 | /* Returns non-zero if the PC is in the Interrupt Vector Table */ |