diff options
author | Michal Simek <michal.simek@xilinx.com> | 2020-11-26 14:25:03 +0100 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2021-06-23 09:48:35 +0200 |
commit | e246dc49cffb63667b5ec9ba02f74d9edf09c3a2 (patch) | |
tree | 938488f178a182a8f8cc37ddb97f8e5954c5bb35 | |
parent | 742fdd1e6b4e94832e1cc3751a077babbaea090e (diff) |
ARM: zynq: Fix OCM mapping to be aligned with binding on zc702
The Linux commit f69629919942 ("dt-bindings: sram: Convert SRAM bindings to
json-schema") converted binding to yaml and some missing required
properties started to be reported. Align binding based on it.
The patch is fixing these warnings:
.../zynq-zc702.dt.yaml: sram@fffc0000: '#address-cells' is a required property
.../zynq-zc702.dt.yaml: sram@fffc0000: '#size-cells' is a required property
.../zynq-zc702.dt.yaml: sram@fffc0000: 'ranges' is a required property
>From schema: .../Documentation/devicetree/bindings/sram/sram.yaml
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Link: https://lore.kernel.org/r/87c02786ccd8d7827827a9d95a8737bb300caeb0.1606397101.git.michal.simek@xilinx.com
-rw-r--r-- | arch/arm/dts/zynq-zc702.dts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/dts/zynq-zc702.dts b/arch/arm/dts/zynq-zc702.dts index e45eba3d90b..4474f4bfd7b 100644 --- a/arch/arm/dts/zynq-zc702.dts +++ b/arch/arm/dts/zynq-zc702.dts @@ -68,6 +68,12 @@ ocm: sram@fffc0000 { compatible = "mmio-sram"; reg = <0xfffc0000 0x10000>; + #address-cells = <1>; + #size-cells = <1>; + ranges = <0 0xfffc0000 0x10000>; + ocm-sram@0 { + reg = <0x0 0x10000>; + }; }; }; |