mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 18:41:48 +00:00
415f792447
This patch moves the reference IIO dummy driver from drivers/staging/iio into a separate folder, drivers/iio/dummy and adds the proper Kconfig and Makefile for it. A new config menu entry called IIO dummy driver has also been added in the Industrial I/O support menu, corresponding to this driver. Signed-off-by: Cristina Opriceana <cristina.opriceana@gmail.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
11 lines
319 B
Makefile
11 lines
319 B
Makefile
#
|
|
# Makefile for the IIO Dummy Driver
|
|
#
|
|
|
|
obj-$(CONFIG_IIO_SIMPLE_DUMMY) += iio_dummy.o
|
|
iio_dummy-y := iio_simple_dummy.o
|
|
iio_dummy-$(CONFIG_IIO_SIMPLE_DUMMY_EVENTS) += iio_simple_dummy_events.o
|
|
iio_dummy-$(CONFIG_IIO_SIMPLE_DUMMY_BUFFER) += iio_simple_dummy_buffer.o
|
|
|
|
obj-$(CONFIG_IIO_DUMMY_EVGEN) += iio_dummy_evgen.o
|