Commit 0db958b6 authored by Rob Herring's avatar Rob Herring
Browse files

dt-bindings: Fix more incorrect 'reg' property sizes in examples



The examples template is a 'simple-bus' with a size of 1 cell for
had between 2 and 4 cells which really only errors on I2C or SPI type
devices with a single cell.

The easiest fix in most cases is to change the 'reg' property to 1 cell
for address and size.

Cc: "Heiko Stübner" <heiko@sntech.de>
Cc: Ezequiel Garcia <ezequiel@collabora.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: Philipp Zabel <p.zabel@pengutronix.de>
Cc: Miquel Raynal <miquel.raynal@bootlin.com>
Cc: Richard Weinberger <richard@nod.at>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Bjorn Andersson <bjorn.andersson@linaro.org>
Cc: Kishon Vijay Abraham I <kishon@ti.com>
Cc: Vinod Koul <vkoul@kernel.org>
Cc: Liam Girdwood <lgirdwood@gmail.com>
Cc: linux-rockchip@lists.infradead.org
Cc: linux-media@vger.kernel.org
Cc: linux-mtd@lists.infradead.org
Cc: netdev@vger.kernel.org
Cc: alsa-devel@alsa-project.org
Acked-by: default avatarMark Brown <broonie@kernel.org>
Signed-off-by: default avatarRob Herring <robh@kernel.org>
parent c0eca14c
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -71,8 +71,8 @@ examples:


    bus@1f059000 {
    bus@1f059000 {
      compatible = "baikal,bt1-apb", "simple-bus";
      compatible = "baikal,bt1-apb", "simple-bus";
      reg = <0 0x1f059000 0 0x1000>,
      reg = <0x1f059000 0x1000>,
            <0 0x1d000000 0 0x2040000>;
            <0x1d000000 0x2040000>;
      reg-names = "ehb", "nodev";
      reg-names = "ehb", "nodev";
      #address-cells = <1>;
      #address-cells = <1>;
      #size-cells = <1>;
      #size-cells = <1>;
+2 −2
Original line number Original line Diff line number Diff line
@@ -85,8 +85,8 @@ examples:


    bus@1f05a000 {
    bus@1f05a000 {
      compatible = "baikal,bt1-axi", "simple-bus";
      compatible = "baikal,bt1-axi", "simple-bus";
      reg = <0 0x1f05a000 0 0x1000>,
      reg = <0x1f05a000 0x1000>,
            <0 0x1f04d110 0 0x8>;
            <0x1f04d110 0x8>;
      reg-names = "qos", "ehb";
      reg-names = "qos", "ehb";
      #address-cells = <1>;
      #address-cells = <1>;
      #size-cells = <1>;
      #size-cells = <1>;
+2 −2
Original line number Original line Diff line number Diff line
@@ -106,8 +106,8 @@ examples:
    #include <dt-bindings/power/rk3288-power.h>
    #include <dt-bindings/power/rk3288-power.h>
    vopb: vopb@ff930000 {
    vopb: vopb@ff930000 {
      compatible = "rockchip,rk3288-vop";
      compatible = "rockchip,rk3288-vop";
      reg = <0x0 0xff930000 0x0 0x19c>,
      reg = <0xff930000 0x19c>,
            <0x0 0xff931000 0x0 0x1000>;
            <0xff931000 0x1000>;
      interrupts = <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>;
      interrupts = <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>;
      clocks = <&cru ACLK_VOP0>,
      clocks = <&cru ACLK_VOP0>,
               <&cru DCLK_VOP0>,
               <&cru DCLK_VOP0>,
+1 −1
Original line number Original line Diff line number Diff line
@@ -51,7 +51,7 @@ examples:
    #include <dt-bindings/interrupt-controller/arm-gic.h>
    #include <dt-bindings/interrupt-controller/arm-gic.h>
    mailbox: mailbox@400a0000 {
    mailbox: mailbox@400a0000 {
      compatible = "sprd,sc9860-mailbox";
      compatible = "sprd,sc9860-mailbox";
      reg = <0 0x400a0000 0 0x8000>, <0 0x400a8000 0 0x8000>;
      reg = <0x400a0000 0x8000>, <0x400a8000 0x8000>;
      #mbox-cells = <1>;
      #mbox-cells = <1>;
      clock-names = "enable";
      clock-names = "enable";
      clocks = <&aon_gate 53>;
      clocks = <&aon_gate 53>;
+1 −1
Original line number Original line Diff line number Diff line
@@ -61,7 +61,7 @@ examples:


    vdec: video-codec@ff660000 {
    vdec: video-codec@ff660000 {
        compatible = "rockchip,rk3399-vdec";
        compatible = "rockchip,rk3399-vdec";
        reg = <0x0 0xff660000 0x0 0x400>;
        reg = <0xff660000 0x400>;
        interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH 0>;
        interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH 0>;
        clocks = <&cru ACLK_VDU>, <&cru HCLK_VDU>,
        clocks = <&cru ACLK_VDU>, <&cru HCLK_VDU>,
                 <&cru SCLK_VDU_CA>, <&cru SCLK_VDU_CORE>;
                 <&cru SCLK_VDU_CA>, <&cru SCLK_VDU_CORE>;
Loading