aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/iio/Makefile
diff options
context:
space:
mode:
authorJonathan Cameron <jic23@cam.ac.uk>2009-08-18 18:06:27 +0100
committerGreg Kroah-Hartman <gregkh@suse.de>2009-09-15 12:02:25 -0700
commit2235acb21890cdd3bc189720b4e98fc1b5c3b268 (patch)
tree8f8ad318ed94b81b789e2d09c85e2f2ef7153ff7 /drivers/staging/iio/Makefile
parent1637db44413e32a0f100dd4bd164644e641842f7 (diff)
Staging: IIO: Ring buffer: Initial pass at rarely locked ring buffer
Please note this ring buffer implementation is very much a work in progress (and hence RFC). In it's current form it is stable and reasonably efficient. There are a couple of unlikely cases that will lead to more data being lost that is strictly necessary. The target was for the case of requiring regular sampling even during user space reads. All comments welcome. The intention is to make this only one of several implementations with run time selection. For now there is only one, so it is hard coded into the drivers using it. Signed-off-by: Jonathan Cameron <jic23@cam.ac.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/iio/Makefile')
-rw-r--r--drivers/staging/iio/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/staging/iio/Makefile b/drivers/staging/iio/Makefile
index 32715181677..dea4536ff82 100644
--- a/drivers/staging/iio/Makefile
+++ b/drivers/staging/iio/Makefile
@@ -7,6 +7,8 @@ industrialio-y := industrialio-core.o
industrialio-$(CONFIG_IIO_RING_BUFFER) += industrialio-ring.o
industrialio-$(CONFIG_IIO_TRIGGER) += industrialio-trigger.o
+obj-$(CONFIG_IIO_SW_RING) += ring_sw.o
+
obj-y += accel/
obj-y += adc/
obj-y += light/ \ No newline at end of file