]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
iio: iio_push_to_buffers(): Change type of 'data' to const void *
authorLars-Peter Clausen <lars@metafoo.de>
Sun, 15 Sep 2013 16:50:00 +0000 (17:50 +0100)
committerJonathan Cameron <jic23@kernel.org>
Sun, 15 Sep 2013 18:02:07 +0000 (19:02 +0100)
commit5d65d92045cb7d3b2c45020c0e62d6d1c1d34f37
treea996bac655ff390d6331d82f6121c6b7aab7bbdf
parentc7a22c36805b015fd220f9fd13d0a14207d556e0
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>
drivers/iio/buffer_cb.c
drivers/iio/industrialio-buffer.c
drivers/iio/kfifo_buf.c
include/linux/iio/buffer.h
include/linux/iio/consumer.h