Staging: iio: iio_dummy_evgen: Simplify NULL comparison
authorCristina Opriceana <cristina.opriceana@gmail.com>
Tue, 31 Mar 2015 09:51:10 +0000 (12:51 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 1 Apr 2015 15:23:20 +0000 (17:23 +0200)
Remove explicit NULL comparison and write it in its simpler form.
Replacement done with coccinelle:

@replace_rule@
expression e;
@@

-e == NULL
+ !e

Signed-off-by: Cristina Opriceana <cristina.opriceana@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/iio/iio_dummy_evgen.c

index 59ad5a3efe9cb3cf1a7a1f2e8fcab693421d64c4..0c9c86d7b5095b96a6248aff0d045bd3f3206008 100644 (file)
@@ -72,7 +72,7 @@ static int iio_dummy_evgen_create(void)
        int ret, i;
 
        iio_evgen = kzalloc(sizeof(*iio_evgen), GFP_KERNEL);
-       if (iio_evgen == NULL)
+       if (!iio_evgen)
                return -ENOMEM;
 
        iio_evgen->base = irq_alloc_descs(-1, 0, IIO_EVENTGEN_NO, 0);
@@ -105,7 +105,7 @@ int iio_dummy_evgen_get_irq(void)
 {
        int i, ret = 0;
 
-       if (iio_evgen == NULL)
+       if (!iio_evgen)
                return -ENODEV;
 
        mutex_lock(&iio_evgen->lock);