diff options
author | Matthew Wilcox <matthew@wil.cx> | 2006-10-26 12:22:32 -0600 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2006-12-07 10:48:19 -0800 |
commit | d61b49c1aa49efc657aa0cf270cf931444680563 (patch) | |
tree | 41abaa5b875228d25990194aa9aa5156b5e49aee /arch/ia64/kernel/kprobes.c | |
parent | a79561134f38de12dce14ed72138f38e55ef53fc (diff) |
[IA64] sparse cleanups
0/NULL confusion and some missing UL on constants.
Signed-off-by: Matthew Wilcox <matthew@wil.cx>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/kernel/kprobes.c')
-rw-r--r-- | arch/ia64/kernel/kprobes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/kernel/kprobes.c b/arch/ia64/kernel/kprobes.c index 51217d63285..898a07d1d6f 100644 --- a/arch/ia64/kernel/kprobes.c +++ b/arch/ia64/kernel/kprobes.c @@ -851,7 +851,7 @@ static void ia64_get_bsp_cfm(struct unw_frame_info *info, void *arg) return; } } while (unw_unwind(info) >= 0); - lp->bsp = 0; + lp->bsp = NULL; lp->cfm = 0; return; } |