From 2bb2dd6e82fd62ffa6673f7d36076d7da60ee7d4 Mon Sep 17 00:00:00 2001 From: Jordan Yates Date: Thu, 9 May 2024 21:08:56 +1000 Subject: [PATCH] tests: flash_simulator: fix devicetree indentation Fix the mix of spaces and tabs in the `nucleo_f411re.overlay` file. Signed-off-by: Jordan Yates --- .../boards/nucleo_f411re.overlay | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/tests/drivers/flash_simulator/boards/nucleo_f411re.overlay b/tests/drivers/flash_simulator/boards/nucleo_f411re.overlay index bbe0f8dabe1..60ce2f36e21 100644 --- a/tests/drivers/flash_simulator/boards/nucleo_f411re.overlay +++ b/tests/drivers/flash_simulator/boards/nucleo_f411re.overlay @@ -5,35 +5,35 @@ */ / { - sram_2001C000:sram@2001C000 { + sram_2001C000:sram@2001C000 { compatible = "zephyr,memory-region", "mmio-sram"; reg = <0x2001C000 0x4000>; zephyr,memory-region = "FlashSim"; status = "okay"; - }; + }; - soc { - sim_flash_controller: sim-flash-controller@0 { - compatible = "zephyr,sim-flash"; - reg = <0x0 0x1>; + soc { + sim_flash_controller: sim-flash-controller@0 { + compatible = "zephyr,sim-flash"; + reg = <0x0 0x1>; #address-cells = <1>; - #size-cells = <1>; - erase-value = <0xff>; - memory-region = <&sram_2001C000>; + #size-cells = <1>; + erase-value = <0xff>; + memory-region = <&sram_2001C000>; flash_sim0: flash_sim@0 { - status = "okay"; - compatible = "soc-nv-flash"; - erase-block-size = <512>; + status = "okay"; + compatible = "soc-nv-flash"; + erase-block-size = <512>; /* the flash_simulator test uses a write block * size of 4 for alignment test, so set it to 4. */ - write-block-size = <4>; - reg = <0x00000000 DT_SIZE_K(16)>; - }; - }; - }; + write-block-size = <4>; + reg = <0x00000000 DT_SIZE_K(16)>; + }; + }; + }; }; &flash_sim0 {