Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ASoC: fsl_sai: Add indentation for binding doc to increase readability

This patch refines the DT binding doc for more readability by adding
extra blank lines and indentations.

Signed-off-by: Nicolin Chen <nicoleotsuka@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Nicolin Chen and committed by
Mark Brown
0b9938b2 9c4c1045

+41 -25
+41 -25
Documentation/devicetree/bindings/sound/fsl-sai.txt
··· 5 5 serial interfaces with frame synchronization such as I2S, AC97, TDM, and 6 6 codec/DSP interfaces. 7 7 8 - 9 8 Required properties: 10 - - compatible: Compatible list, contains "fsl,vf610-sai" or "fsl,imx6sx-sai". 11 - - reg: Offset and length of the register set for the device. 12 - - clocks: Must contain an entry for each entry in clock-names. 13 - - clock-names : Must include the "bus" for register access and "mclk1" "mclk2" 14 - "mclk3" for bit clock and frame clock providing. 15 - - dmas : Generic dma devicetree binding as described in 16 - Documentation/devicetree/bindings/dma/dma.txt. 17 - - dma-names : Two dmas have to be defined, "tx" and "rx". 18 - - pinctrl-names: Must contain a "default" entry. 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. 21 - - big-endian: Boolean property, required if all the FTM_PWM registers 22 - are big-endian rather than little-endian. 23 - - lsb-first: Configures whether the LSB or the MSB is transmitted first for 24 - the fifo data. If this property is absent, the MSB is transmitted first as 25 - default, or the LSB is transmitted first. 26 - - fsl,sai-synchronous-rx: This is a boolean property. If present, indicating 27 - that SAI will work in the synchronous mode (sync Tx with Rx) which means 28 - both the transimitter and receiver will send and receive data by following 29 - receiver's bit clocks and frame sync clocks. 30 - - fsl,sai-asynchronous: This is a boolean property. If present, indicating 31 - that SAI will work in the asynchronous mode, which means both transimitter 32 - and receiver will send and receive data by following their own bit clocks 33 - and frame sync clocks separately. 9 + 10 + - compatible : Compatible list, contains "fsl,vf610-sai" or 11 + "fsl,imx6sx-sai". 12 + 13 + - reg : Offset and length of the register set for the device. 14 + 15 + - clocks : Must contain an entry for each entry in clock-names. 16 + 17 + - clock-names : Must include the "bus" for register access and 18 + "mclk1", "mclk2", "mclk3" for bit clock and frame 19 + clock providing. 20 + - dmas : Generic dma devicetree binding as described in 21 + Documentation/devicetree/bindings/dma/dma.txt. 22 + 23 + - dma-names : Two dmas have to be defined, "tx" and "rx". 24 + 25 + - pinctrl-names : Must contain a "default" entry. 26 + 27 + - pinctrl-NNN : One property must exist for each entry in 28 + pinctrl-names. See ../pinctrl/pinctrl-bindings.txt 29 + for details of the property values. 30 + 31 + - big-endian : Boolean property, required if all the FTM_PWM 32 + registers are big-endian rather than little-endian. 33 + 34 + - lsb-first : Configures whether the LSB or the MSB is transmitted 35 + first for the fifo data. If this property is absent, 36 + the MSB is transmitted first as default, or the LSB 37 + is transmitted first. 38 + 39 + - fsl,sai-synchronous-rx: This is a boolean property. If present, indicating 40 + that SAI will work in the synchronous mode (sync Tx 41 + with Rx) which means both the transimitter and the 42 + receiver will send and receive data by following 43 + receiver's bit clocks and frame sync clocks. 44 + 45 + - fsl,sai-asynchronous: This is a boolean property. If present, indicating 46 + that SAI will work in the asynchronous mode, which 47 + means both transimitter and receiver will send and 48 + receive data by following their own bit clocks and 49 + frame sync clocks separately. 34 50 35 51 Note: 36 52 - If both fsl,sai-asynchronous and fsl,sai-synchronous-rx are absent, the