diff options
author | Peter Meerwald <pmeerw@pmeerw.net> | 2014-12-06 07:46:00 +0100 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2014-06-14 17:25:59 +0200 |
commit | 398fd22b6b94cb15c1c299bceecd63644a1b17b4 (patch) | |
tree | fe941bcc754089e09a7c7a16069c54882b51f58e /drivers/iio/trigger/iio-trig-sysfs.c | |
parent | staging: iio: fix coding style by adding blank lines in iio_simple_dummy (diff) | |
download | linux-398fd22b6b94cb15c1c299bceecd63644a1b17b4.tar.xz linux-398fd22b6b94cb15c1c299bceecd63644a1b17b4.zip |
iio: Remove timestamp argument from iio_trigger_poll() and iio_trigger_poll_chained()
argument has been ignored; adjust drivers accordingly
Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/trigger/iio-trig-sysfs.c')
-rw-r--r-- | drivers/iio/trigger/iio-trig-sysfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/trigger/iio-trig-sysfs.c b/drivers/iio/trigger/iio-trig-sysfs.c index 15e3b850f513..254c7e906127 100644 --- a/drivers/iio/trigger/iio-trig-sysfs.c +++ b/drivers/iio/trigger/iio-trig-sysfs.c @@ -96,7 +96,7 @@ static void iio_sysfs_trigger_work(struct irq_work *work) struct iio_sysfs_trig *trig = container_of(work, struct iio_sysfs_trig, work); - iio_trigger_poll(trig->trig, 0); + iio_trigger_poll(trig->trig); } static ssize_t iio_sysfs_trigger_poll(struct device *dev, |