diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2015-08-14 17:54:54 +0300 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2015-08-15 16:50:30 +0300 |
commit | 050ee2f16e245b42c9ba30640bb91b309b424c48 (patch) | |
tree | 402ab434d8e6f028c4269ce5b2a47ec8ba9382d7 /drivers/iio/Makefile | |
parent | 47d5e30ae38ba81600bd2c3292b39d31792470c7 (diff) | |
download | linux-050ee2f16e245b42c9ba30640bb91b309b424c48.tar.xz |
iio: Move callback buffer to its own module
Currently the IIO callback buffer implementation is directly built into the
IIO core module when enabled. Given that the callback buffer module is
standalone functionallity there is really no reason to do this. So move it
to its own module.
Also rename the source to follow the standard IIO module naming convention
as well as add a license notice to the file.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/Makefile')
-rw-r--r-- | drivers/iio/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/Makefile b/drivers/iio/Makefile index 698afc2d17ce..09d8ec5d57d8 100644 --- a/drivers/iio/Makefile +++ b/drivers/iio/Makefile @@ -6,8 +6,8 @@ obj-$(CONFIG_IIO) += industrialio.o industrialio-y := industrialio-core.o industrialio-event.o inkern.o industrialio-$(CONFIG_IIO_BUFFER) += industrialio-buffer.o industrialio-$(CONFIG_IIO_TRIGGER) += industrialio-trigger.o -industrialio-$(CONFIG_IIO_BUFFER_CB) += buffer_cb.o +obj-$(CONFIG_IIO_BUFFER_CB) += industrialio-buffer-cb.o obj-$(CONFIG_IIO_TRIGGERED_BUFFER) += industrialio-triggered-buffer.o obj-$(CONFIG_IIO_KFIFO_BUF) += kfifo_buf.o |