diff options
| author | Cristina Opriceana <cristina.opriceana@gmail.com> | 2015-06-23 09:34:19 -0400 |
|---|---|---|
| committer | Jonathan Cameron <jic23@kernel.org> | 2015-07-05 10:19:50 -0400 |
| commit | fcc577dd55db193926537e0e4de98492d665446b (patch) | |
| tree | 1acd727a0c4d268f22ed971ebf074f2b540bf39c /include/linux/iio | |
| parent | 5e913d27f91aa15e1311399385579bef5238e2cd (diff) | |
iio: Fix parameters in iio_triggered_buffer_setup
This patch renames the top half handler and the bottom half handler
of iio_triggered_buffer_setup() in accordance with their usage.
The bottom half has been renamed to reflect the fact that it is a
thread based call, compliant with iio_alloc_pollfunc().
The names of the parameters were swapped, thus creating confusion.
Signed-off-by: Cristina Opriceana <cristina.opriceana@gmail.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'include/linux/iio')
| -rw-r--r-- | include/linux/iio/triggered_buffer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/iio/triggered_buffer.h b/include/linux/iio/triggered_buffer.h index c378ebec605e..f72f70d5a97b 100644 --- a/include/linux/iio/triggered_buffer.h +++ b/include/linux/iio/triggered_buffer.h | |||
| @@ -7,8 +7,8 @@ struct iio_dev; | |||
| 7 | struct iio_buffer_setup_ops; | 7 | struct iio_buffer_setup_ops; |
| 8 | 8 | ||
| 9 | int iio_triggered_buffer_setup(struct iio_dev *indio_dev, | 9 | int iio_triggered_buffer_setup(struct iio_dev *indio_dev, |
| 10 | irqreturn_t (*pollfunc_bh)(int irq, void *p), | 10 | irqreturn_t (*h)(int irq, void *p), |
| 11 | irqreturn_t (*pollfunc_th)(int irq, void *p), | 11 | irqreturn_t (*thread)(int irq, void *p), |
| 12 | const struct iio_buffer_setup_ops *setup_ops); | 12 | const struct iio_buffer_setup_ops *setup_ops); |
| 13 | void iio_triggered_buffer_cleanup(struct iio_dev *indio_dev); | 13 | void iio_triggered_buffer_cleanup(struct iio_dev *indio_dev); |
| 14 | 14 | ||
