diff options
author | Stefan Popa <stefan.popa@analog.com> | 2018-04-11 13:53:17 +0200 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2018-04-15 20:36:32 +0200 |
commit | 0357e488b825313db3d574137337557f404e59ed (patch) | |
tree | 5e56ffa73a95b4a7c46f779ad8b05c441d250085 /drivers/iio/dac/Makefile | |
parent | iio:dac:ad5686: Add AD5672R/76/76R/84R/86R support (diff) | |
download | linux-0357e488b825313db3d574137337557f404e59ed.tar.xz linux-0357e488b825313db3d574137337557f404e59ed.zip |
iio:dac:ad5686: Refactor the driver
In this patch restructures the existing ad5686 driver by adding a module
for SPI and a header file, while the baseline module deals with the
chip-logic.
This is a necessary step, as this driver should support in the future
similar devices which differ only in the type of interface used (I2C
instead of SPI).
Signed-off-by: Stefan Popa <stefan.popa@analog.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio/dac/Makefile')
-rw-r--r-- | drivers/iio/dac/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/iio/dac/Makefile b/drivers/iio/dac/Makefile index 81e710ed7491..07db92e19490 100644 --- a/drivers/iio/dac/Makefile +++ b/drivers/iio/dac/Makefile @@ -20,6 +20,7 @@ obj-$(CONFIG_AD5761) += ad5761.o obj-$(CONFIG_AD5764) += ad5764.o obj-$(CONFIG_AD5791) += ad5791.o obj-$(CONFIG_AD5686) += ad5686.o +obj-$(CONFIG_AD5686_SPI) += ad5686-spi.o obj-$(CONFIG_AD7303) += ad7303.o obj-$(CONFIG_AD8801) += ad8801.o obj-$(CONFIG_CIO_DAC) += cio-dac.o |