From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3338C314A78; Wed, 3 Dec 2025 15:38:13 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764776293; cv=none; b=qlDwpSKVXGoF3/tQtFt4QlYxII/aDi2O0EoLDpBMCfbSMXWlJgWaPq45VMSW/DpH9A+w8+QG+ltWAqctVnUtyqo2ANHplzTnW17235Jf0vevC5u1r0rYM9yj8+eZjaMRepzVQbWcpxLBnCoH/Q0hfNcIXsdLmsFsZtPb21+Q4p0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764776293; c=relaxed/simple; bh=C0llxzNN3ONfJ87G87/EJK9/Oq5J9Vz1iRCLTLTbTqE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=SnXmUsDKdCBFghcyuDqxv7c+XGSarj3tnsVSoVBcwVtwF5GmG5i9//1V4HgvEwMUSeTgv0mFfqE6g6M+16FT1HQQBnyxdaqqqU79Sqj+oh0UIhZW37yCIMy9d3HlZFOS17l75lPe+tHyUo2sromFwWAYyBWS4lK4Bk06U8VzxRI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=JfLeZn/T; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="JfLeZn/T" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 94AE9C4CEF5; Wed, 3 Dec 2025 15:38:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1764776293; bh=C0llxzNN3ONfJ87G87/EJK9/Oq5J9Vz1iRCLTLTbTqE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=JfLeZn/TqCHKFczUJGAq9W8Cl+xRkObsCuSf3Be/nXHSKy0kInnDbJ49pjlYg1Noo 3ayf4xFaySXClReZZXVkViriJBMQnjYBqxxtFHHpb5D48ooaVSlLtGRzLIYO7Mq1a5 89JWuMKkVP1/r9g3SG7TgWw2ziv9v7z1Nv6SVyvU= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Aleksander Jan Bajkowski , Thomas Bogendoerfer , Sasha Levin Subject: [PATCH 5.10 096/300] mips: lantiq: danube: add missing properties to cpu node Date: Wed, 3 Dec 2025 16:25:00 +0100 Message-ID: <20251203152404.180266118@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20251203152400.447697997@linuxfoundation.org> References: <20251203152400.447697997@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Aleksander Jan Bajkowski [ 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 Signed-off-by: Thomas Bogendoerfer Signed-off-by: Sasha Levin --- arch/mips/boot/dts/lantiq/danube.dtsi | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arch/mips/boot/dts/lantiq/danube.dtsi b/arch/mips/boot/dts/lantiq/danube.dtsi index 510be63c8bdf1..ff6ff9568e1bc 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>; }; }; -- 2.51.0