diff options
author | Thomas Bogendoerfer | 2020-07-02 12:05:33 +0200 |
---|---|---|
committer | Thomas Bogendoerfer | 2020-07-02 12:08:37 +0200 |
commit | d23c9e06580fb414b7a223a50ac05474cc1414d9 (patch) | |
tree | eea33f2fbd00bbadf7e225a58544d17c9ac6ec8e | |
parent | ff711d67b1786ec1e3e4019d615287a2e890e9ab (diff) |
dt-bindings: MIPS: Fix tabs in Ingenic SoCs binding.
While applying commit 9909bc43a2e2 ("dt-bindings: MIPS: Document Ingenic
SoCs binding.") I've messed up by "fixing" indentation in a C style,
which is wrong for yaml files. Replace tabs back to spaces.
Fixes: 9909bc43a2e2 ("dt-bindings: MIPS: Document Ingenic SoCs binding.")
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
-rw-r--r-- | Documentation/devicetree/bindings/mips/ingenic/ingenic,cpu.yaml | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/Documentation/devicetree/bindings/mips/ingenic/ingenic,cpu.yaml b/Documentation/devicetree/bindings/mips/ingenic/ingenic,cpu.yaml index ee3423bfc56e..16fa03d65ad5 100644 --- a/Documentation/devicetree/bindings/mips/ingenic/ingenic,cpu.yaml +++ b/Documentation/devicetree/bindings/mips/ingenic/ingenic,cpu.yaml @@ -43,25 +43,25 @@ examples: #include <dt-bindings/clock/jz4780-cgu.h> cpus { - #address-cells = <1>; - #size-cells = <0>; + #address-cells = <1>; + #size-cells = <0>; - cpu0: cpu@0 { - device_type = "cpu"; - compatible = "ingenic,xburst-fpu1.0-mxu1.1"; - reg = <0>; + cpu0: cpu@0 { + device_type = "cpu"; + compatible = "ingenic,xburst-fpu1.0-mxu1.1"; + reg = <0>; - clocks = <&cgu JZ4780_CLK_CPU>; - clock-names = "cpu"; - }; + clocks = <&cgu JZ4780_CLK_CPU>; + clock-names = "cpu"; + }; - cpu1: cpu@1 { - device_type = "cpu"; - compatible = "ingenic,xburst-fpu1.0-mxu1.1"; - reg = <1>; + cpu1: cpu@1 { + device_type = "cpu"; + compatible = "ingenic,xburst-fpu1.0-mxu1.1"; + reg = <1>; - clocks = <&cgu JZ4780_CLK_CORE1>; - clock-names = "cpu"; - }; + clocks = <&cgu JZ4780_CLK_CORE1>; + clock-names = "cpu"; + }; }; ... |