diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-01-31 22:05:47 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-31 22:05:47 +0100 |
commit | 072b7a58ca534a667f9649ead1628dfb20087e4b (patch) | |
tree | 7d2b9810de9bd1ceceeb7cec82f3a590c7c990cc /arch | |
parent | 706b7e1573d7b7ad7825e84a6dcfb3d533993b83 (diff) | |
download | linux-072b7a58ca534a667f9649ead1628dfb20087e4b.tar.gz linux-072b7a58ca534a667f9649ead1628dfb20087e4b.tar.xz |
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')
-rw-r--r-- | arch/x86/kernel/ds.c | 2 |
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; } |