tests: flash_simulator: fix devicetree indentation
Fix the mix of spaces and tabs in the `nucleo_f411re.overlay` file. Signed-off-by: Jordan Yates <jordan@embeint.com>
This commit is contained in:
parent
153255f15b
commit
2bb2dd6e82
1 changed files with 17 additions and 17 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue