]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: atomisp: Removes pointer comparison to 0 in ia_css_queue_get_size
authorTahia Khan <tahia.khan@gmail.com>
Wed, 15 Mar 2017 04:03:14 +0000 (00:03 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 16 Mar 2017 02:23:00 +0000 (11:23 +0900)
Repaces pointer comparison to 0 with NULL in ia_css_queue_get_size
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>
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/queue/src/queue.c

index f397a8cd54407e712f35b4c30f936bd998b39b53..606376fdf0ba1fc5208b319cff4c551026615f1d 100644 (file)
@@ -383,7 +383,7 @@ int ia_css_queue_get_size(
                        uint32_t *size)
 {
        int error = 0;
-       if ((qhandle == 0) || (size == NULL))
+       if ((qhandle == NULL) || (size == NULL))
                return EINVAL;
 
        /* 1. Load the required queue object */