Staging: speakup/kobjects: Use NULL instead of 0
Use NULL instead of 0 for pointers. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ff471ea823
commit
aee175f55a
@ -521,7 +521,7 @@ static ssize_t punc_store(struct kobject *kobj, struct kobj_attribute *attr,
|
||||
spin_lock_irqsave(&speakup_info.spinlock, flags);
|
||||
|
||||
if (*punc_buf == 'd' || *punc_buf == 'r')
|
||||
x = spk_set_mask_bits(0, var->value, 3);
|
||||
x = spk_set_mask_bits(NULL, var->value, 3);
|
||||
else
|
||||
x = spk_set_mask_bits(punc_buf, var->value, 3);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user