aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXiubo Li2014-08-24 22:31:02 -0500
committerMark Brown2014-08-27 13:19:29 -0500
commit014fd22ef9c6a7e9536b7e16635714a1a34810a8 (patch)
treeb3b74ed97784541fce9ee9249dc44ed6f0658c64 /Documentation/devicetree/bindings/sound/fsl-sai.txt
parent664915074e750614c5d140093d5098a165a24e3d (diff)
downloadti-linux-kernel-014fd22ef9c6a7e9536b7e16635714a1a34810a8.tar.gz
ti-linux-kernel-014fd22ef9c6a7e9536b7e16635714a1a34810a8.tar.xz
ti-linux-kernel-014fd22ef9c6a7e9536b7e16635714a1a34810a8.zip
ASoC: fsl-sai: Convert to use regmap framework's endianness method.
Signed-off-by: Xiubo Li <Li.Xiubo@freescale.com> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'Documentation/devicetree/bindings/sound/fsl-sai.txt')
-rw-r--r--Documentation/devicetree/bindings/sound/fsl-sai.txt7
1 files changed, 3 insertions, 4 deletions
diff --git a/Documentation/devicetree/bindings/sound/fsl-sai.txt b/Documentation/devicetree/bindings/sound/fsl-sai.txt
index 0f4e23828190..5f239b8bcddd 100644
--- a/Documentation/devicetree/bindings/sound/fsl-sai.txt
+++ b/Documentation/devicetree/bindings/sound/fsl-sai.txt
@@ -18,9 +18,8 @@ Required properties:
18- pinctrl-names: Must contain a "default" entry. 18- pinctrl-names: Must contain a "default" entry.
19- pinctrl-NNN: One property must exist for each entry in pinctrl-names. 19- pinctrl-NNN: One property must exist for each entry in pinctrl-names.
20 See ../pinctrl/pinctrl-bindings.txt for details of the property values. 20 See ../pinctrl/pinctrl-bindings.txt for details of the property values.
21- big-endian-regs: If this property is absent, the little endian mode will 21- big-endian: Boolean property, required if all the FTM_PWM registers
22 be in use as default, or the big endian mode will be in use for all the 22 are big-endian rather than little-endian.
23 device registers.
24- big-endian-data: If this property is absent, the little endian mode will 23- big-endian-data: If this property is absent, the little endian mode will
25 be in use as default, or the big endian mode will be in use for all the 24 be in use as default, or the big endian mode will be in use for all the
26 fifo data. 25 fifo data.
@@ -38,6 +37,6 @@ sai2: sai@40031000 {
38 dma-names = "tx", "rx"; 37 dma-names = "tx", "rx";
39 dmas = <&edma0 0 VF610_EDMA_MUXID0_SAI2_TX>, 38 dmas = <&edma0 0 VF610_EDMA_MUXID0_SAI2_TX>,
40 <&edma0 0 VF610_EDMA_MUXID0_SAI2_RX>; 39 <&edma0 0 VF610_EDMA_MUXID0_SAI2_RX>;
41 big-endian-regs; 40 big-endian;
42 big-endian-data; 41 big-endian-data;
43}; 42};