dts: cleanup usage of "flash" and "sram" compatible

Remove compatible = "flash" from any node that has it as this doesn't
have any well defined meaning right now.  Also update any compatible =
"sram" to be "mmio-sram" (as there's a binding in linux for this).

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2017-07-20 07:59:29 -05:00 committed by Kumar Gala
commit 4cace27c82
8 changed files with 8 additions and 11 deletions

View file

@ -19,12 +19,11 @@
}; };
sram0: memory { sram0: memory {
compatible = "sram"; compatible = "mmio-sram";
reg = <0x20070000 0x18000>; reg = <0x20070000 0x18000>;
}; };
flash0: flash { flash0: flash {
compatible = "flash";
reg = <0x00080000 0x80000>; reg = <0x00080000 0x80000>;
}; };

View file

@ -19,12 +19,11 @@
}; };
sram0: memory { sram0: memory {
compatible = "sram"; compatible = "mmio-sram";
reg = <0x20100000 0x20000>; reg = <0x20100000 0x20000>;
}; };
flash0: flash { flash0: flash {
compatible = "flash";
reg = <0x00400000 0x100000>; reg = <0x00400000 0x100000>;
}; };

View file

@ -21,12 +21,11 @@
}; };
flash0: flash { flash0: flash {
compatible = "flash";
reg = <0x00400000 DT_FLASH_SIZE>; reg = <0x00400000 DT_FLASH_SIZE>;
}; };
sram0: memory { sram0: memory {
compatible = "sram"; compatible = "mmio-sram";
reg = <0x20400000 DT_SRAM_SIZE>; reg = <0x20400000 DT_SRAM_SIZE>;
}; };

View file

@ -21,7 +21,7 @@
}; };
sram0: memory { sram0: memory {
compatible = "sram"; compatible = "mmio-sram";
reg = <0x20000000 0x400000>; reg = <0x20000000 0x400000>;
}; };

View file

@ -19,7 +19,7 @@
}; };
sram0: memory { sram0: memory {
compatible = "sram"; compatible = "mmio-sram";
reg = <0x20000000 0x5000>; reg = <0x20000000 0x5000>;
}; };

View file

@ -20,7 +20,7 @@
}; };
sram0: memory { sram0: memory {
compatible = "sram"; compatible = "mmio-sram";
reg = <DT_SRAM_START DT_SRAM_SIZE>; reg = <DT_SRAM_START DT_SRAM_SIZE>;
}; };

View file

@ -13,7 +13,7 @@
}; };
sram0: memory { sram0: memory {
compatible = "sram"; compatible = "mmio-sram";
reg = <0x20000000 (64*1024)>; reg = <0x20000000 (64*1024)>;
}; };

View file

@ -21,7 +21,7 @@
}; };
sram0: memory { sram0: memory {
compatible = "sram"; compatible = "mmio-sram";
reg = <0x20000000 0x20000>; reg = <0x20000000 0x20000>;
}; };