Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add ad3530r driver #2680

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -1174,6 +1174,7 @@ L: [email protected]
S: Supported
W: https://ez.analog.com/linux-software-drivers
F: Documentation/devicetree/bindings/iio/dac/adi,ad3530r.yaml
F: drivers/iio/dac/ad3530r.c

ANALOG DEVICES INC AD3552R DRIVER
M: Nuno Sá <[email protected]>
Expand Down
10 changes: 10 additions & 0 deletions drivers/iio/dac/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@

menu "Digital to analog converters"

config AD3530R
tristate "Analog Devices AD3530R DAC driver"
depends on SPI_MASTER
help
Say yes here to build support for Analog Devices AD3530R
Digital to Analog Converter.

To compile this driver as a module, choose M here: the
module will be called ad3530r.

config AD3552R
tristate "Analog Devices AD3552R DAC driver"
depends on SPI_MASTER
Expand Down
1 change: 1 addition & 0 deletions drivers/iio/dac/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#

# When adding new entries keep the list in alphabetical order
obj-$(CONFIG_AD3530R) += ad3530r.o
obj-$(CONFIG_AD3552R) += ad3552r.o
obj-$(CONFIG_AD5270) += ad5270.o
obj-$(CONFIG_AD5360) += ad5360.o
Expand Down
Loading