Commit bb685660 authored by Haiyue Wang's avatar Haiyue Wang Committed by Benjamin Cabé
Browse files

dts: bindings: memc: stm32: correct the SDRAM base address description



Catch the DTS warning by copying the SDRAM node in description:

 unit address and first address in 'reg' (0xc000000) don't match for
 /sdram@c0000000

Signed-off-by: default avatarHaiyue Wang <haiyuewa@163.com>
parent 87468a25
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -58,14 +58,14 @@ description: |
  sdram1: sdram@c0000000 {
      compatible = "zephyr,memory-region", "mmio-sram";
      device_type = "memory";
      reg = <0xc000000 DT_SIZE_M(X)>;
      reg = <0xc0000000 DT_SIZE_M(X)>;
      zephyr,memory-region = "SDRAM1";
  };

  sdram2: sdram@d0000000 {
      compatible = "zephyr,memory-region", "mmio-sram";
      device_type = "memory";
      reg = <0xd000000 DT_SIZE_M(X)>;
      reg = <0xd0000000 DT_SIZE_M(X)>;
      zephyr,memory-region = "SDRAM2";
  };