1# DAC configuration options 2 3# Copyright (c) 2020 Matija Tudan 4# 5# SPDX-License-Identifier: Apache-2.0 6 7config DAC_DACX3608 8 bool "TI DACX3608 DAC driver" 9 default y 10 select I2C 11 depends on DT_HAS_TI_DAC43608_ENABLED || DT_HAS_TI_DAC53608_ENABLED 12 help 13 Enable the driver for the TI DACX3608. 14 15if DAC_DACX3608 16 17config DAC_DACX3608_INIT_PRIORITY 18 int "Init priority" 19 default 80 20 help 21 TI DACX3608 DAC device driver initialization priority. 22 23endif # DAC_DACX3608 24