Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c7a8be08 authored by Jonathan Cameron's avatar Jonathan Cameron
Browse files

iio:triggers:interrupt trigger - move out of staging.



This is now a very simple trigger indeed but useful in many common cases.

Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
Reviewed-by: default avatarLars-Peter Clausen <lars@metafoo.de>
parent 3c1e02db
Loading
Loading
Loading
Loading
+9 −0
Original line number Original line Diff line number Diff line
@@ -3,6 +3,15 @@
#
#
menu "Triggers - standalone"
menu "Triggers - standalone"


config IIO_INTERRUPT_TRIGGER
	tristate "Generic interrupt trigger"
	help
	  Provides support for using an interrupt of any type as an IIO
	  trigger.  This may be provided by a gpio driver for example.

	  To compile this driver as a module, choose M here: the
	  module will be called iio-trig-interrupt.

config IIO_SYSFS_TRIGGER
config IIO_SYSFS_TRIGGER
	tristate "SYSFS trigger"
	tristate "SYSFS trigger"
	depends on SYSFS
	depends on SYSFS
+1 −0
Original line number Original line Diff line number Diff line
@@ -2,4 +2,5 @@
# Makefile for triggers not associated with iio-devices
# Makefile for triggers not associated with iio-devices
#
#


obj-$(CONFIG_IIO_INTERRUPT_TRIGGER) += iio-trig-interrupt.o
obj-$(CONFIG_IIO_SYSFS_TRIGGER) += iio-trig-sysfs.o
obj-$(CONFIG_IIO_SYSFS_TRIGGER) += iio-trig-sysfs.o
+0 −6
Original line number Original line Diff line number Diff line
@@ -12,12 +12,6 @@ config IIO_PERIODIC_RTC_TRIGGER
	  Provides support for using periodic capable real time
	  Provides support for using periodic capable real time
	  clocks as IIO triggers.
	  clocks as IIO triggers.


config IIO_INTERRUPT_TRIGGER
	tristate "Generic interrupt trigger"
	help
	  Provides support for using interrupts of various types as IIO
	  triggers.  These may be provided by a gpio driver for example.

config IIO_BFIN_TMR_TRIGGER
config IIO_BFIN_TMR_TRIGGER
	tristate "Blackfin TIMER trigger"
	tristate "Blackfin TIMER trigger"
	depends on BLACKFIN
	depends on BLACKFIN
+0 −1
Original line number Original line Diff line number Diff line
@@ -3,5 +3,4 @@
#
#


obj-$(CONFIG_IIO_PERIODIC_RTC_TRIGGER) += iio-trig-periodic-rtc.o
obj-$(CONFIG_IIO_PERIODIC_RTC_TRIGGER) += iio-trig-periodic-rtc.o
obj-$(CONFIG_IIO_INTERRUPT_TRIGGER) += iio-trig-interrupt.o
obj-$(CONFIG_IIO_BFIN_TMR_TRIGGER) += iio-trig-bfin-timer.o
obj-$(CONFIG_IIO_BFIN_TMR_TRIGGER) += iio-trig-bfin-timer.o