fix hostfs_open() use of ->f_path.dentry
[linux-2.6-microblaze.git] / Documentation / devicetree / bindings / iio / dac / vf610-dac.txt
1 Freescale vf610 Digital to Analog Converter bindings
2
3 The devicetree bindings are for the new DAC driver written for
4 vf610 SoCs from Freescale.
5
6 Required properties:
7 - compatible: Should contain "fsl,vf610-dac"
8 - reg: Offset and length of the register set for the device
9 - interrupts: Should contain the interrupt for the device
10 - clocks: The clock is needed by the DAC controller
11 - clock-names: Must contain "dac" matching entry in the clocks property.
12
13 Example:
14 dac0: dac@400cc000 {
15         compatible = "fsl,vf610-dac";
16         reg = <0x400cc000 0x1000>;
17         interrupts = <55 IRQ_TYPE_LEVEL_HIGH>;
18         clock-names = "dac";
19         clocks = <&clks VF610_CLK_DAC0>;
20 };