1# DAC configuration options
2
3# Copyright (c) 2020 M2I Corporation
4#
5# SPDX-License-Identifier: Apache-2.0
6
7config DAC_DACX0508
8	bool "TI DACx0508 DAC driver"
9	default y
10	select SPI
11	depends on DT_HAS_TI_DAC60508_ENABLED || DT_HAS_TI_DAC70508_ENABLED || \
12		   DT_HAS_TI_DAC80508_ENABLED
13	help
14	  Enable the driver for the TI DACx0508.
15
16if DAC_DACX0508
17
18config DAC_DACX0508_INIT_PRIORITY
19	int "Init priority"
20	default 80
21	help
22	  TI DACx0508 DAC device driver initialization priority.
23
24endif # DAC_DACX0508
25