diff options
author | Karol Wrona <k.wrona@samsung.com> | 2014-12-19 20:39:24 +0300 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2014-12-26 14:20:38 +0300 |
commit | 7ab374a053a43050117eb452306b6cd9dcb58cfd (patch) | |
tree | 1605369c59a8e0d07a788f17c93ae02cbcd46e2c /drivers/iio/kfifo_buf.c | |
parent | 614e8842ddf5502f0e781f91695bfbc1e1e1d9b6 (diff) | |
download | linux-7ab374a053a43050117eb452306b6cd9dcb58cfd.tar.xz |
iio: kfifo: Remove unused argument in iio_kfifo_allocate
indio_dev was unused in function body plus some small style fix - add new
lines after "if(sth) return sth" and before the last return statement.
The argument was removed also in its client.
Signed-off-by: Karol Wrona <k.wrona@samsung.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/kfifo_buf.c')
-rw-r--r-- | drivers/iio/kfifo_buf.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/iio/kfifo_buf.c b/drivers/iio/kfifo_buf.c index b20a9cfbc8ed..7f6fad658e83 100644 --- a/drivers/iio/kfifo_buf.c +++ b/drivers/iio/kfifo_buf.c @@ -140,18 +140,20 @@ static const struct iio_buffer_access_funcs kfifo_access_funcs = { .release = &iio_kfifo_buffer_release, }; -struct iio_buffer *iio_kfifo_allocate(struct iio_dev *indio_dev) +struct iio_buffer *iio_kfifo_allocate(void) { struct iio_kfifo *kf; - kf = kzalloc(sizeof *kf, GFP_KERNEL); + kf = kzalloc(sizeof(*kf), GFP_KERNEL); if (!kf) return NULL; + kf->update_needed = true; iio_buffer_init(&kf->buffer); kf->buffer.access = &kfifo_access_funcs; kf->buffer.length = 2; mutex_init(&kf->user_lock); + return &kf->buffer; } EXPORT_SYMBOL(iio_kfifo_allocate); |