diff options
author | Karol Wrona | 2014-12-19 18:39:24 +0100 |
---|---|---|
committer | Jonathan Cameron | 2014-12-26 11:20:38 +0000 |
commit | 7ab374a053a43050117eb452306b6cd9dcb58cfd (patch) | |
tree | 1605369c59a8e0d07a788f17c93ae02cbcd46e2c /drivers/iio/adc/ti_am335x_adc.c | |
parent | 614e8842ddf5502f0e781f91695bfbc1e1e1d9b6 (diff) |
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/adc/ti_am335x_adc.c')
-rw-r--r-- | drivers/iio/adc/ti_am335x_adc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/adc/ti_am335x_adc.c b/drivers/iio/adc/ti_am335x_adc.c index d550ac7d2365..5eea299518a3 100644 --- a/drivers/iio/adc/ti_am335x_adc.c +++ b/drivers/iio/adc/ti_am335x_adc.c @@ -250,7 +250,7 @@ static int tiadc_iio_buffered_hardware_setup(struct iio_dev *indio_dev, struct iio_buffer *buffer; int ret; - buffer = iio_kfifo_allocate(indio_dev); + buffer = iio_kfifo_allocate(); if (!buffer) return -ENOMEM; |