All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] iio: inkern: add error case in iio_channel_get()
@ 2012-09-17  8:44 ` Kim, Milo
  0 siblings, 0 replies; 3+ messages in thread
From: Kim, Milo @ 2012-09-17  8:44 UTC (permalink / raw)
  To: Jonathan Cameron
  Cc: Jonathan Cameron, Lars-Peter Clausen, linux-iio@vger.kernel.org,
	linux-kernel@vger.kernel.org

 The datasheet name is defined in the IIO driver.
 On the other hand, the adc_channel_label is configured in
 the platform side.
 If the datasheet name is not matched with any adc_channel_label,
 the iio_channel_get() should be returned as error for preventing
 invalid channel data access.

 This can be handled either way.
 (a) checking null data when using it : in the xxx_read_raw()
 or
 (b) error returns when the channel is requested : this patch

 The IIO consumer can't use the channel with invalid channel spec.
 Therefore case (b) is more reasonable.

Signed-off-by: Milo(Woogyom) Kim <milo.kim@ti.com>
---
 drivers/iio/inkern.c |   11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/drivers/iio/inkern.c b/drivers/iio/inkern.c
index 1faa240..13748c0 100644
--- a/drivers/iio/inkern.c
+++ b/drivers/iio/inkern.c
@@ -136,12 +136,21 @@ struct iio_channel *iio_channel_get(const char *name,=
 const char *channel_name)
=20
 	channel->indio_dev =3D c->indio_dev;
=20
-	if (c->map->adc_channel_label)
+	if (c->map->adc_channel_label) {
 		channel->channel =3D
 			iio_chan_spec_from_name(channel->indio_dev,
 						c->map->adc_channel_label);
=20
+		if (channel->channel =3D=3D NULL)
+			goto error_no_chan;
+	}
+
 	return channel;
+
+error_no_chan:
+	iio_device_put(c->indio_dev);
+	kfree(channel);
+	return ERR_PTR(-EINVAL);
 }
 EXPORT_SYMBOL_GPL(iio_channel_get);
=20
--=20
1.7.9.5


Best Regards,
Milo

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-09-17 18:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-17  8:44 [PATCH 1/2] iio: inkern: add error case in iio_channel_get() Kim, Milo
2012-09-17  8:44 ` Kim, Milo
2012-09-17 18:21 ` Jonathan Cameron

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.