diff options
| author | Aleksander Jan Bajkowski <olek2@wp.pl> | 2025-08-11 13:58:15 +0200 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2025-11-24 10:29:31 +0100 |
| commit | 6c7de5a8957fb9bce064c6776bade5c3b7209b3f (patch) | |
| tree | 3b0f75d9be25aa881b1e583d66ca9b218155d722 /arch/mips | |
| parent | f589021c3347995f3877f98983f73c8be19b6873 (diff) | |
| download | linux-6c7de5a8957fb9bce064c6776bade5c3b7209b3f.tar.gz linux-6c7de5a8957fb9bce064c6776bade5c3b7209b3f.tar.bz2 linux-6c7de5a8957fb9bce064c6776bade5c3b7209b3f.zip | |
mips: lantiq: danube: add missing properties to cpu node
[ Upstream commit e8dee66c37085dc9858eb8608bc783c2900e50e7 ]
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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'arch/mips')
| -rw-r--r-- | arch/mips/boot/dts/lantiq/danube.dtsi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/mips/boot/dts/lantiq/danube.dtsi b/arch/mips/boot/dts/lantiq/danube.dtsi index 7a7ba66aa534..0a942bc09143 100644 --- a/arch/mips/boot/dts/lantiq/danube.dtsi +++ b/arch/mips/boot/dts/lantiq/danube.dtsi @@ -5,8 +5,12 @@ compatible = "lantiq,xway", "lantiq,danube"; cpus { + #address-cells = <1>; + #size-cells = <0>; + cpu@0 { compatible = "mips,mips24Kc"; + reg = <0>; }; }; |
