[PATCH v3 2/9] mips: dts: realtek: add device_type property to cpu node

Chris Packham posted 9 patches 1 year, 5 months ago
There is a newer version of this series
[PATCH v3 2/9] mips: dts: realtek: add device_type property to cpu node
Posted by Chris Packham 1 year, 5 months ago
Add device_type = "cpu" to the cpu node for the rtl838x SoC. This
resolves the following dtbs_check complaint:

 cpus: cpu@0: 'cache-level' is a required property

Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz>
---

Notes:
    Changes in v2:
    - New

 arch/mips/boot/dts/realtek/rtl838x.dtsi | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/mips/boot/dts/realtek/rtl838x.dtsi b/arch/mips/boot/dts/realtek/rtl838x.dtsi
index 6cc4ff5c0d19..722106e39194 100644
--- a/arch/mips/boot/dts/realtek/rtl838x.dtsi
+++ b/arch/mips/boot/dts/realtek/rtl838x.dtsi
@@ -6,6 +6,7 @@ cpus {
 		#size-cells = <0>;
 
 		cpu@0 {
+			device_type = "cpu";
 			compatible = "mips,mips4KEc";
 			reg = <0>;
 			clocks = <&baseclk 0>;
-- 
2.45.2
Re: [PATCH v3 2/9] mips: dts: realtek: add device_type property to cpu node
Posted by Marek Behún 1 year, 5 months ago
On Thu, 27 Jun 2024 16:33:10 +1200
Chris Packham <chris.packham@alliedtelesis.co.nz> wrote:

> Add device_type = "cpu" to the cpu node for the rtl838x SoC. This
> resolves the following dtbs_check complaint:
> 
>  cpus: cpu@0: 'cache-level' is a required property
> 
> Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz>

Reviewed-by: Marek Behún <kabel@kernel.org>