]> Git Repo - linux.git/commitdiff
MIPS: dts: bcm63268: Add missing properties to the TWD node
authorFlorian Fainelli <[email protected]>
Tue, 20 Dec 2022 19:09:46 +0000 (11:09 -0800)
committerThomas Bogendoerfer <[email protected]>
Wed, 21 Dec 2022 09:46:10 +0000 (10:46 +0100)
We currently have a DTC warning with the current DTS due to the lack of
a suitable #address-cells and #size-cells property:

  DTC     arch/mips/boot/dts/brcm/bcm63268-comtrend-vr-3032u.dtb
arch/mips/boot/dts/brcm/bcm63268.dtsi:115.5-22: Warning (reg_format): /ubus/timer-mfd@10000080/timer@0:reg: property has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1)
arch/mips/boot/dts/brcm/bcm63268.dtsi:120.5-22: Warning (reg_format): /ubus/timer-mfd@10000080/watchdog@1c:reg: property has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1)
arch/mips/boot/dts/brcm/bcm63268.dtsi:111.4-35: Warning (ranges_format): /ubus/timer-mfd@10000080:ranges: "ranges" property has invalid length (12 bytes) (parent #address-cells == 1, child #address-cells == 2, #size-cells == 1)

Fixes: d3db4b96ab7f ("mips: dts: bcm63268: add TWD block timer")
Signed-off-by: Florian Fainelli <[email protected]>
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
Signed-off-by: Thomas Bogendoerfer <[email protected]>
arch/mips/boot/dts/brcm/bcm63268.dtsi

index c663efce91cf5dd08e96e0eb6d5bf695ec03dc11..7b788757cb1ebeb51fbcacb4c33df18c910d23b5 100644 (file)
                        compatible = "brcm,bcm7038-twd", "simple-mfd", "syscon";
                        reg = <0x10000080 0x30>;
                        ranges = <0x0 0x10000080 0x30>;
+                       #address-cells = <1>;
+                       #size-cells = <1>;
 
                        timer@0 {
                                compatible = "brcm,bcm6345-timer";
This page took 0.059801 seconds and 4 git commands to generate.