ARM: zynq: Convert at25 binding to new description on zc770-xm013
authorMichal Simek <michal.simek@xilinx.com>
Thu, 26 Nov 2020 13:25:04 +0000 (14:25 +0100)
committerMichal Simek <michal.simek@xilinx.com>
Wed, 9 Dec 2020 14:18:31 +0000 (15:18 +0100)
The commit f8f79fa6bb25 ("dt-bindings: at25: convert the binding document
to yaml") converted binding to yaml and 3 deprecated properties pop up.

The patch is fixing these warnings:
.../zynq-zc770-xm013.dt.yaml: eeprom@2: 'pagesize' is a required property
.../zynq-zc770-xm013.dt.yaml: eeprom@2: 'size' is a required property
.../zynq-zc770-xm013.dt.yaml: eeprom@2: 'address-width' is a required property
>From schema: .../Documentation/devicetree/bindings/eeprom/at25.yaml

by converting them to new binding.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Link: https://lore.kernel.org/r/be2c1125d98386033e182012eb08986924707a76.1606397101.git.michal.simek@xilinx.com
arch/arm/boot/dts/zynq-zc770-xm013.dts

index 4ae2c85df3a0078111f1b4aa9a24b695265cee16..38d96adc870ca90ea6d987e12346fe0a81d9990a 100644 (file)
        num-cs = <4>;
        is-decoded-cs = <0>;
        eeprom: eeprom@2 {
-               at25,byte-len = <8192>;
-               at25,addr-mode = <2>;
-               at25,page-size = <32>;
-
                compatible = "atmel,at25";
                reg = <2>;
                spi-max-frequency = <1000000>;
+               size = <8192>;
+               address-width = <16>;
+               pagesize = <32>;
        };
 };