aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86
diff options
context:
space:
mode:
authorHarvey Harrison <harvey.harrison@gmail.com>2008-01-31 22:05:47 +0100
committerIngo Molnar <mingo@elte.hu>2008-01-31 22:05:47 +0100
commit072b7a58ca534a667f9649ead1628dfb20087e4b (patch)
tree7d2b9810de9bd1ceceeb7cec82f3a590c7c990cc /arch/x86
parentx86: fix sparse warning in kernel/scx200_32.c (diff)
downloadlinux-dev-072b7a58ca534a667f9649ead1628dfb20087e4b.tar.xz
linux-dev-072b7a58ca534a667f9649ead1628dfb20087e4b.zip
x86: fix small sparse warning
arch/x86/kernel/ds.c:226:9: warning: Using plain integer as NULL pointer Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86')
-rw-r--r--arch/x86/kernel/ds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/ds.c b/arch/x86/kernel/ds.c
index 1c5ca4d18787..dcd918c1580d 100644
--- a/arch/x86/kernel/ds.c
+++ b/arch/x86/kernel/ds.c
@@ -223,7 +223,7 @@ int ds_free(void **dsp)
if (*dsp)
kfree((void *)get_bts_buffer_base(*dsp));
kfree(*dsp);
- *dsp = 0;
+ *dsp = NULL;
return 0;
}