aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iio/inkern.c
diff options
context:
space:
mode:
authorKim, Milo <Milo.Kim@ti.com>2012-09-18 00:56:00 -0400
committerJonathan Cameron <jic23@kernel.org>2012-09-22 05:13:33 -0400
commit3183bac16f537503eb3177773781d6d3059ad7b1 (patch)
tree26f62b097ad2e9b554e68ed4280fa5f445c5d7f0 /drivers/iio/inkern.c
parent801c4b5ca373c4cfe78912616d68e1f7fd84110c (diff)
iio: inkern: clean up error return code
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>
Diffstat (limited to 'drivers/iio/inkern.c')
-rw-r--r--drivers/iio/inkern.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/drivers/iio/inkern.c b/drivers/iio/inkern.c
index e38f41464fe4..f2b78d4fe457 100644
--- a/drivers/iio/inkern.c
+++ b/drivers/iio/inkern.c
@@ -111,6 +111,7 @@ struct iio_channel *iio_channel_get(const char *name, const char *channel_name)
111{ 111{
112 struct iio_map_internal *c_i = NULL, *c = NULL; 112 struct iio_map_internal *c_i = NULL, *c = NULL;
113 struct iio_channel *channel; 113 struct iio_channel *channel;
114 int err;
114 115
115 if (name == NULL && channel_name == NULL) 116 if (name == NULL && channel_name == NULL)
116 return ERR_PTR(-ENODEV); 117 return ERR_PTR(-ENODEV);
@@ -131,8 +132,10 @@ struct iio_channel *iio_channel_get(const char *name, const char *channel_name)
131 return ERR_PTR(-ENODEV); 132 return ERR_PTR(-ENODEV);
132 133
133 channel = kzalloc(sizeof(*channel), GFP_KERNEL); 134 channel = kzalloc(sizeof(*channel), GFP_KERNEL);
134 if (channel == NULL) 135 if (channel == NULL) {
136 err = -ENOMEM;
135 goto error_no_mem; 137 goto error_no_mem;
138 }
136 139
137 channel->indio_dev = c->indio_dev; 140 channel->indio_dev = c->indio_dev;
138 141
@@ -141,19 +144,19 @@ struct iio_channel *iio_channel_get(const char *name, const char *channel_name)
141 iio_chan_spec_from_name(channel->indio_dev, 144 iio_chan_spec_from_name(channel->indio_dev,
142 c->map->adc_channel_label); 145 c->map->adc_channel_label);
143 146
144 if (channel->channel == NULL) 147 if (channel->channel == NULL) {
148 err = -EINVAL;
145 goto error_no_chan; 149 goto error_no_chan;
150 }
146 } 151 }
147 152
148 return channel; 153 return channel;
149 154
150error_no_chan: 155error_no_chan:
151 iio_device_put(c->indio_dev);
152 kfree(channel); 156 kfree(channel);
153 return ERR_PTR(-EINVAL);
154error_no_mem: 157error_no_mem:
155 iio_device_put(c->indio_dev); 158 iio_device_put(c->indio_dev);
156 return ERR_PTR(-ENOMEM); 159 return ERR_PTR(err);
157} 160}
158EXPORT_SYMBOL_GPL(iio_channel_get); 161EXPORT_SYMBOL_GPL(iio_channel_get);
159 162