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

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

iio:trigger:sysfs Move out of staging.



This simple driver is rather useful. No issues about its interface
have been raised for some time hence the proposal to move it out
of staging.

Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent f4914e5e
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -70,5 +70,8 @@ source "drivers/iio/gyro/Kconfig"
source "drivers/iio/imu/Kconfig"
source "drivers/iio/light/Kconfig"
source "drivers/iio/magnetometer/Kconfig"
if IIO_TRIGGER
   source "drivers/iio/trigger/Kconfig"
endif #IIO_TRIGGER

endif # IIO
+1 −0
Original line number Diff line number Diff line
@@ -21,3 +21,4 @@ obj-y += frequency/
obj-y += imu/
obj-y += light/
obj-y += magnetometer/
obj-y += trigger/
+17 −0
Original line number Diff line number Diff line
#
# Industrial I/O standalone triggers
#
menu "Triggers - standalone"

config IIO_SYSFS_TRIGGER
	tristate "SYSFS trigger"
	depends on SYSFS
	select IRQ_WORK
	help
	  Provides support for using SYSFS entry as IIO triggers.
	  If unsure, say N (but it's safe to say "Y").

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

endmenu
+5 −0
Original line number Diff line number Diff line
#
# Makefile for triggers not associated with iio-devices
#

obj-$(CONFIG_IIO_SYSFS_TRIGGER) += iio-trig-sysfs.o
Loading