mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 19:41:54 +00:00
iio:buffer_cb: Constify iio_cb_access
The iio_cb_access struct is never modified so we can mark it as const. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
parent
6a2f39b78b
commit
c7a22c3680
@ -21,7 +21,7 @@ static int iio_buffer_cb_store_to(struct iio_buffer *buffer, u8 *data)
|
||||
return cb_buff->cb(data, cb_buff->private);
|
||||
}
|
||||
|
||||
static struct iio_buffer_access_funcs iio_cb_access = {
|
||||
static const struct iio_buffer_access_funcs iio_cb_access = {
|
||||
.store_to = &iio_buffer_cb_store_to,
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user