summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2013-09-15 12:50:00 -0400
committerJonathan Cameron <jic23@kernel.org>2013-09-15 14:02:07 -0400
commit5d65d92045cb7d3b2c45020c0e62d6d1c1d34f37 (patch)
treea996bac655ff390d6331d82f6121c6b7aab7bbdf
parentc7a22c36805b015fd220f9fd13d0a14207d556e0 (diff)
iio: iio_push_to_buffers(): Change type of 'data' to const void *
Change the type of the 'data' parameter for iio_push_to_buffers() from 'u8 *' to 'const void *'. Drivers typically use the correct type (e.g. __be16 *) for their data buffer. When passing the buffer to iio_push_to_buffers() it needs to be cast to 'u8 *' for the compiler to not complain (and also having to add __force if we want to keep sparse happy as well). Since the buffer implementation should not care about the data layout (except the size of one sample) using a void pointer is the correct thing to do. Also make it const as the buffer implementations are not supposed to modify it. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
-rw-r--r--drivers/iio/buffer_cb.c6
-rw-r--r--drivers/iio/industrialio-buffer.c10
-rw-r--r--drivers/iio/kfifo_buf.c2
-rw-r--r--include/linux/iio/buffer.h6
-rw-r--r--include/linux/iio/consumer.h2
5 files changed, 13 insertions, 13 deletions
diff --git a/drivers/iio/buffer_cb.c b/drivers/iio/buffer_cb.c
index f406889248c8..578f7199ed51 100644
--- a/drivers/iio/buffer_cb.c
+++ b/drivers/iio/buffer_cb.c
@@ -7,12 +7,12 @@
7 7
8struct iio_cb_buffer { 8struct iio_cb_buffer {
9 struct iio_buffer buffer; 9 struct iio_buffer buffer;
10 int (*cb)(u8 *data, void *private); 10 int (*cb)(const void *data, void *private);
11 void *private; 11 void *private;
12 struct iio_channel *channels; 12 struct iio_channel *channels;
13}; 13};
14 14
15static int iio_buffer_cb_store_to(struct iio_buffer *buffer, u8 *data) 15static int iio_buffer_cb_store_to(struct iio_buffer *buffer, const void *data)
16{ 16{
17 struct iio_cb_buffer *cb_buff = container_of(buffer, 17 struct iio_cb_buffer *cb_buff = container_of(buffer,
18 struct iio_cb_buffer, 18 struct iio_cb_buffer,
@@ -26,7 +26,7 @@ static const struct iio_buffer_access_funcs iio_cb_access = {
26}; 26};
27 27
28struct iio_cb_buffer *iio_channel_get_all_cb(struct device *dev, 28struct iio_cb_buffer *iio_channel_get_all_cb(struct device *dev,
29 int (*cb)(u8 *data, 29 int (*cb)(const void *data,
30 void *private), 30 void *private),
31 void *private) 31 void *private)
32{ 32{
diff --git a/drivers/iio/industrialio-buffer.c b/drivers/iio/industrialio-buffer.c
index 7ea2edbf7614..a7ac4b5af03e 100644
--- a/drivers/iio/industrialio-buffer.c
+++ b/drivers/iio/industrialio-buffer.c
@@ -769,8 +769,8 @@ struct iio_demux_table {
769 struct list_head l; 769 struct list_head l;
770}; 770};
771 771
772static unsigned char *iio_demux(struct iio_buffer *buffer, 772static const void *iio_demux(struct iio_buffer *buffer,
773 unsigned char *datain) 773 const void *datain)
774{ 774{
775 struct iio_demux_table *t; 775 struct iio_demux_table *t;
776 776
@@ -783,9 +783,9 @@ static unsigned char *iio_demux(struct iio_buffer *buffer,
783 return buffer->demux_bounce; 783 return buffer->demux_bounce;
784} 784}
785 785
786static int iio_push_to_buffer(struct iio_buffer *buffer, unsigned char *data) 786static int iio_push_to_buffer(struct iio_buffer *buffer, const void *data)
787{ 787{
788 unsigned char *dataout = iio_demux(buffer, data); 788 const void *dataout = iio_demux(buffer, data);
789 789
790 return buffer->access->store_to(buffer, dataout); 790 return buffer->access->store_to(buffer, dataout);
791} 791}
@@ -800,7 +800,7 @@ static void iio_buffer_demux_free(struct iio_buffer *buffer)
800} 800}
801 801
802 802
803int iio_push_to_buffers(struct iio_dev *indio_dev, unsigned char *data) 803int iio_push_to_buffers(struct iio_dev *indio_dev, const void *data)
804{ 804{
805 int ret; 805 int ret;
806 struct iio_buffer *buf; 806 struct iio_buffer *buf;
diff --git a/drivers/iio/kfifo_buf.c b/drivers/iio/kfifo_buf.c
index 1bea41bcbdc6..538d4616e48f 100644
--- a/drivers/iio/kfifo_buf.c
+++ b/drivers/iio/kfifo_buf.c
@@ -95,7 +95,7 @@ static int iio_set_length_kfifo(struct iio_buffer *r, int length)
95} 95}
96 96
97static int iio_store_to_kfifo(struct iio_buffer *r, 97static int iio_store_to_kfifo(struct iio_buffer *r,
98 u8 *data) 98 const void *data)
99{ 99{
100 int ret; 100 int ret;
101 struct iio_kfifo *kf = iio_to_kfifo(r); 101 struct iio_kfifo *kf = iio_to_kfifo(r);
diff --git a/include/linux/iio/buffer.h b/include/linux/iio/buffer.h
index 2bac0eb8948d..e5507e999ed1 100644
--- a/include/linux/iio/buffer.h
+++ b/include/linux/iio/buffer.h
@@ -36,7 +36,7 @@ struct iio_buffer;
36 * any of them not existing. 36 * any of them not existing.
37 **/ 37 **/
38struct iio_buffer_access_funcs { 38struct iio_buffer_access_funcs {
39 int (*store_to)(struct iio_buffer *buffer, u8 *data); 39 int (*store_to)(struct iio_buffer *buffer, const void *data);
40 int (*read_first_n)(struct iio_buffer *buffer, 40 int (*read_first_n)(struct iio_buffer *buffer,
41 size_t n, 41 size_t n,
42 char __user *buf); 42 char __user *buf);
@@ -81,7 +81,7 @@ struct iio_buffer {
81 bool stufftoread; 81 bool stufftoread;
82 const struct attribute_group *attrs; 82 const struct attribute_group *attrs;
83 struct list_head demux_list; 83 struct list_head demux_list;
84 unsigned char *demux_bounce; 84 void *demux_bounce;
85 struct list_head buffer_list; 85 struct list_head buffer_list;
86}; 86};
87 87
@@ -120,7 +120,7 @@ int iio_scan_mask_set(struct iio_dev *indio_dev,
120 * @indio_dev: iio_dev structure for device. 120 * @indio_dev: iio_dev structure for device.
121 * @data: Full scan. 121 * @data: Full scan.
122 */ 122 */
123int iio_push_to_buffers(struct iio_dev *indio_dev, unsigned char *data); 123int iio_push_to_buffers(struct iio_dev *indio_dev, const void *data);
124 124
125int iio_update_demux(struct iio_dev *indio_dev); 125int iio_update_demux(struct iio_dev *indio_dev);
126 126
diff --git a/include/linux/iio/consumer.h b/include/linux/iio/consumer.h
index 833926c91aa8..2752b1fd12be 100644
--- a/include/linux/iio/consumer.h
+++ b/include/linux/iio/consumer.h
@@ -77,7 +77,7 @@ struct iio_cb_buffer;
77 * fail. 77 * fail.
78 */ 78 */
79struct iio_cb_buffer *iio_channel_get_all_cb(struct device *dev, 79struct iio_cb_buffer *iio_channel_get_all_cb(struct device *dev,
80 int (*cb)(u8 *data, 80 int (*cb)(const void *data,
81 void *private), 81 void *private),
82 void *private); 82 void *private);
83/** 83/**