mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-03-23 03:38:05 +08:00
staging: atomisp: Removes pointer comparison to 0 in ia_css_queue_dequeue
Repaces pointer comparison to 0 with NULL in ia_css_queue_dequeue to improve code readability. Identified with coccinelle script 'badzero.cocci'. Signed-off-by: Tahia Khan <tahia.khan@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c526ec2653
commit
118c07f978
@ -146,7 +146,7 @@ int ia_css_queue_dequeue(
|
||||
uint32_t *item)
|
||||
{
|
||||
int error = 0;
|
||||
if (qhandle == 0 || NULL == item)
|
||||
if (qhandle == NULL || NULL == item)
|
||||
return EINVAL;
|
||||
|
||||
/* 1. Load the required queue object */
|
||||
|
Loading…
x
Reference in New Issue
Block a user