diff options
author | Vladimir Barinov <vladimir.barinov@cogentembedded.com> | 2015-08-20 22:37:39 +0300 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2015-08-27 20:47:09 +0100 |
commit | 735ad074ffa72ccc4fdba8e54eb024df95545e7d (patch) | |
tree | 5cc52d06761fba79d2a70ce0d665b1c583bf386c /drivers/iio/Makefile | |
parent | 764589b688a1b087b5ff6c1e99f7cd57a5241395 (diff) |
iio: Support triggered events
Support triggered events.
This is useful for chips that don't have their own interrupt sources.
It allows to use generic/standalone iio triggers for those drivers.
Signed-off-by: Vladimir Barinov <vladimir.barinov@cogentembedded.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/Makefile')
-rw-r--r-- | drivers/iio/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/iio/Makefile b/drivers/iio/Makefile index 7ddb988338ec..40995f366843 100644 --- a/drivers/iio/Makefile +++ b/drivers/iio/Makefile @@ -7,6 +7,8 @@ industrialio-y := industrialio-core.o industrialio-event.o inkern.o industrialio-$(CONFIG_IIO_BUFFER) += industrialio-buffer.o industrialio-$(CONFIG_IIO_TRIGGER) += industrialio-trigger.o +obj-$(CONFIG_IIO_TRIGGERED_EVENT) += industrialio-triggered-event.o + obj-y += accel/ obj-y += adc/ obj-y += amplifiers/ |