diff options
author | Guenter Roeck <linux@roeck-us.net> | 2013-01-31 16:43:00 -0500 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2013-02-02 06:58:46 -0500 |
commit | ca7d98dbd7db6aa8bc4b08e26be1249436d21af3 (patch) | |
tree | b0a094e0a28b62adace30b549a550305064a72d7 /drivers/iio/buffer_cb.c | |
parent | 482bb4e6c648a68598cde9d4a56b066df26d5ae6 (diff) |
iio: Update iio_channel_get_all and iio_channel_get_all_cb API
Pass device pointer instead of device name as parameter to iio_channel_get_all
and iio_channel_get_all_cb. This will enable us to use OF information to
retrieve consumer channel information.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/buffer_cb.c')
-rw-r--r-- | drivers/iio/buffer_cb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/iio/buffer_cb.c b/drivers/iio/buffer_cb.c index 4d40e24f3721..9201022945e9 100644 --- a/drivers/iio/buffer_cb.c +++ b/drivers/iio/buffer_cb.c | |||
@@ -25,7 +25,7 @@ static struct iio_buffer_access_funcs iio_cb_access = { | |||
25 | .store_to = &iio_buffer_cb_store_to, | 25 | .store_to = &iio_buffer_cb_store_to, |
26 | }; | 26 | }; |
27 | 27 | ||
28 | struct iio_cb_buffer *iio_channel_get_all_cb(const char *name, | 28 | struct iio_cb_buffer *iio_channel_get_all_cb(struct device *dev, |
29 | int (*cb)(u8 *data, | 29 | int (*cb)(u8 *data, |
30 | void *private), | 30 | void *private), |
31 | void *private) | 31 | void *private) |
@@ -46,7 +46,7 @@ struct iio_cb_buffer *iio_channel_get_all_cb(const char *name, | |||
46 | cb_buff->buffer.access = &iio_cb_access; | 46 | cb_buff->buffer.access = &iio_cb_access; |
47 | INIT_LIST_HEAD(&cb_buff->buffer.demux_list); | 47 | INIT_LIST_HEAD(&cb_buff->buffer.demux_list); |
48 | 48 | ||
49 | cb_buff->channels = iio_channel_get_all(name); | 49 | cb_buff->channels = iio_channel_get_all(dev); |
50 | if (IS_ERR(cb_buff->channels)) { | 50 | if (IS_ERR(cb_buff->channels)) { |
51 | ret = PTR_ERR(cb_buff->channels); | 51 | ret = PTR_ERR(cb_buff->channels); |
52 | goto error_free_cb_buff; | 52 | goto error_free_cb_buff; |