drivers: staging: iio: meter: Removed unnecessary variable
authorTina Johnson <tinajohnson.1234@gmail.com>
Mon, 9 Mar 2015 10:41:18 +0000 (16:11 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 9 Mar 2015 12:39:10 +0000 (13:39 +0100)
Variable ret is used only to store the error code to be returned.
Hence use of ret is removed and the return statement modified.
Coccinelle was used to prepare the patch:

@rule1@
identifier ret;
expression e;
@@

-ret =
+return
        e;
-return ret;

Signed-off-by: Tina Johnson <tinajohnson.1234@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/iio/meter/ade7758_ring.c

index 3792b57616456c99c55ac6a35cb7b8adc97671dc..9725a04c0c920b94f57306fb3d9070818e2f778e 100644 (file)
@@ -120,8 +120,7 @@ int ade7758_configure_ring(struct iio_dev *indio_dev)
 
        buffer = iio_kfifo_allocate();
        if (!buffer) {
-               ret = -ENOMEM;
-               return ret;
+               return -ENOMEM;
        }
 
        iio_device_attach_buffer(indio_dev, buffer);
This page took 0.024718 seconds and 5 git commands to generate.