1NXP LPC1850 DAC bindings
2
3Required properties:
4- compatible: Should be "nxp,lpc1850-dac"
5- reg: Offset and length of the register set for the ADC device
6- interrupts: The interrupt number for the ADC device
7- clocks: The root clock of the ADC controller
8- vref-supply: The regulator supply ADC reference voltage
9- resets: phandle to reset controller and line specifier
10
11Example:
12dac: dac@400e1000 {
13	compatible = "nxp,lpc1850-dac";
14	reg = <0x400e1000 0x1000>;
15	interrupts = <0>;
16	clocks = <&ccu1 CLK_APB3_DAC>;
17	vref-supply = <&reg_vdda>;
18	resets = <&rgu 42>;
19};
20