]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
iio: inkern: clean up error return code
authorKim, Milo <Milo.Kim@ti.com>
Tue, 18 Sep 2012 04:56:00 +0000 (05:56 +0100)
committerJonathan Cameron <jic23@kernel.org>
Sat, 22 Sep 2012 09:13:33 +0000 (10:13 +0100)
 When the IIO consumer tries to get specific IIO channel,
 few error cases can be happened.
 (a) Memory allocation failure
 (b) No matched ADC channel error
 (c) Invalid input arguments
 This patch enables cleaning up error handling in case of (a) and (b).

 In error handling code,
 (a): the reference count of the IIO device should be decreased.
 (b): the allocated memory should be freed with restoring the reference count.
 Therefore iio_deivce_put() is called in both cases.
 This can be handled in the last error statement.

 Additionally, integer variable is used for stating each error case explicitly.
 Then, the error returns as ERR_PTR() with this value.

Signed-off-by: Milo(Woogyom) Kim <milo.kim@ti.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/inkern.c

index e38f41464fe4bf727bde44ffc587d730c6426efb..f2b78d4fe45778d01f05a97eb1e3a9b1bc8164e4 100644 (file)
@@ -111,6 +111,7 @@ struct iio_channel *iio_channel_get(const char *name, const char *channel_name)
 {
        struct iio_map_internal *c_i = NULL, *c = NULL;
        struct iio_channel *channel;
+       int err;
 
        if (name == NULL && channel_name == NULL)
                return ERR_PTR(-ENODEV);
@@ -131,8 +132,10 @@ struct iio_channel *iio_channel_get(const char *name, const char *channel_name)
                return ERR_PTR(-ENODEV);
 
        channel = kzalloc(sizeof(*channel), GFP_KERNEL);
-       if (channel == NULL)
+       if (channel == NULL) {
+               err = -ENOMEM;
                goto error_no_mem;
+       }
 
        channel->indio_dev = c->indio_dev;
 
@@ -141,19 +144,19 @@ struct iio_channel *iio_channel_get(const char *name, const char *channel_name)
                        iio_chan_spec_from_name(channel->indio_dev,
                                                c->map->adc_channel_label);
 
-               if (channel->channel == NULL)
+               if (channel->channel == NULL) {
+                       err = -EINVAL;
                        goto error_no_chan;
+               }
        }
 
        return channel;
 
 error_no_chan:
-       iio_device_put(c->indio_dev);
        kfree(channel);
-       return ERR_PTR(-EINVAL);
 error_no_mem:
        iio_device_put(c->indio_dev);
-       return ERR_PTR(-ENOMEM);
+       return ERR_PTR(err);
 }
 EXPORT_SYMBOL_GPL(iio_channel_get);