From a17b535906a93ae403a27fc51a547f66198c1534 Mon Sep 17 00:00:00 2001 From: Geert Uytterhoeven Date: Fri, 4 Dec 2020 15:40:16 +0100 Subject: [PATCH] tools/litex_json2dts: Fix DTS indentation Make indentation of the generated DTS more consistent, by always using 8 spaces (no TABs), and aligning continued lines. Signed-off-by: Geert Uytterhoeven --- litex/tools/litex_json2dts.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/litex/tools/litex_json2dts.py b/litex/tools/litex_json2dts.py index 4aadf1a91..e2317794a 100755 --- a/litex/tools/litex_json2dts.py +++ b/litex/tools/litex_json2dts.py @@ -184,8 +184,8 @@ def generate_dts(d): mac0: mac@{ethmac_csr_base:x} {{ compatible = "litex,liteeth"; reg = <0x{ethmac_csr_base:x} 0x7c - 0x{ethphy_csr_base:x} 0x0a - 0x{ethmac_mem_base:x} 0x2000>; + 0x{ethphy_csr_base:x} 0x0a + 0x{ethmac_mem_base:x} 0x2000>; tx-fifo-depth = <{ethmac_tx_slots}>; rx-fifo-depth = <{ethmac_rx_slots}>; }}; @@ -273,8 +273,8 @@ def generate_dts(d): dts += """ litespiflash: spiflash@{spiflash_csr_base:x} {{ - #address-cells = <1>; - #size-cells = <1>; + #address-cells = <1>; + #size-cells = <1>; compatible = "litex,spiflash"; reg = <0x{spiflash_csr_base:x} 0x100>; flash: flash@0 {{ @@ -306,10 +306,10 @@ def generate_dts(d): mmc-slot@0 {{ compatible = "mmc-spi-slot"; - reg = <0>; + reg = <0>; voltage-ranges = <3300 3300>; spi-max-frequency = <1500000>; - status = "okay"; + status = "okay"; }}; }}; """.format(spisdcard_csr_base=d["csr_bases"]["spisdcard"]) @@ -408,7 +408,7 @@ def generate_dts(d): return """ CLKOUT{clkout_nr}: CLKOUT{clkout_nr} {{ compatible = "litex,clk"; - #clock-cells = <0>; + #clock-cells = <0>; clock-output-names = "CLKOUT{clkout_nr}"; reg = <{clkout_nr}>; litex,clock-frequency = <{clk_f}>;