]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
mips: lantiq: danube: add missing properties to cpu node
authorAleksander Jan Bajkowski <olek2@wp.pl>
Mon, 11 Aug 2025 11:58:15 +0000 (13:58 +0200)
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>
Fri, 29 Aug 2025 20:34:29 +0000 (22:34 +0200)
This fixes the following warnings:
arch/mips/boot/dts/lantiq/danube_easy50712.dtb: cpus: '#address-cells' is a required property
from schema $id: http://devicetree.org/schemas/cpus.yaml#
arch/mips/boot/dts/lantiq/danube_easy50712.dtb: cpus: '#size-cells' is a required property
from schema $id: http://devicetree.org/schemas/cpus.yaml#
arch/mips/boot/dts/lantiq/danube_easy50712.dtb: cpu@0 (mips,mips24Kc): 'reg' is a required property
from schema $id: http://devicetree.org/schemas/mips/cpus.yaml#

Signed-off-by: Aleksander Jan Bajkowski <olek2@wp.pl>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
arch/mips/boot/dts/lantiq/danube.dtsi

index 7a7ba66aa5349d11ec07789324d50332839389ad..0a942bc091436664fd6cf897f226f5cb496d1775 100644 (file)
@@ -5,8 +5,12 @@
        compatible = "lantiq,xway", "lantiq,danube";
 
        cpus {
+               #address-cells = <1>;
+               #size-cells = <0>;
+
                cpu@0 {
                        compatible = "mips,mips24Kc";
+                       reg = <0>;
                };
        };