diff options
author | Zubair Lutfullah <zubair.lutfullah@gmail.com> | 2013-09-22 04:20:00 -0400 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2013-09-22 14:01:12 -0400 |
commit | 98c08cf4e39748f1bcbeb48338638181f8b1eb60 (patch) | |
tree | 4950aba7f1cd928d380e5d81e431e998e75d7606 /drivers/iio/adc/ti_am335x_adc.c | |
parent | 7a137c9c40784e7be0a44182ed6ebc5ea22d5ac1 (diff) |
iio: ti_am335x_adc: fix static in function header
Static is missing in function header. Corrected.
Signed-off-by: Zubair Lutfullah <zubair.lutfullah@gmail.com>
Reported-by: kbuild test robot <fengguang.wu@intel.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 5287bffd8a75..91dce1f7a770 100644 --- a/drivers/iio/adc/ti_am335x_adc.c +++ b/drivers/iio/adc/ti_am335x_adc.c | |||
@@ -226,7 +226,7 @@ static const struct iio_buffer_setup_ops tiadc_buffer_setup_ops = { | |||
226 | .postdisable = &tiadc_buffer_postdisable, | 226 | .postdisable = &tiadc_buffer_postdisable, |
227 | }; | 227 | }; |
228 | 228 | ||
229 | int tiadc_iio_buffered_hardware_setup(struct iio_dev *indio_dev, | 229 | static int tiadc_iio_buffered_hardware_setup(struct iio_dev *indio_dev, |
230 | irqreturn_t (*pollfunc_bh)(int irq, void *p), | 230 | irqreturn_t (*pollfunc_bh)(int irq, void *p), |
231 | irqreturn_t (*pollfunc_th)(int irq, void *p), | 231 | irqreturn_t (*pollfunc_th)(int irq, void *p), |
232 | int irq, | 232 | int irq, |