From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 876F5CA0ECD for ; Mon, 11 Sep 2023 22:09:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1357980AbjIKWHH (ORCPT ); Mon, 11 Sep 2023 18:07:07 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39140 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238681AbjIKOCf (ORCPT ); Mon, 11 Sep 2023 10:02:35 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 74080CD7 for ; Mon, 11 Sep 2023 07:02:30 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id BDBE2C433C8; Mon, 11 Sep 2023 14:02:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1694440950; bh=JLCvWy+VGpvn/geBsMqKmyO5Qt8E7LNK7NmiEB3Rgto=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=R3ROGY1goc0OOvbVuS7B8WcSnLq7wWpQoCXhG+dyPxlGxhlfeWqDsPJP09Kn9J34U bJ5qn9HXINCljlhAYqG2MB8o8Bm8D7YoJ4H0TX0Xjbr3f1+sEb46PYbs3xV010fkkS MGr/KgqPZb0mR8LkMEvjTnXW07qHdl/aKalIIM9A= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Konrad Dybcio , Krzysztof Kozlowski , Bryan ODonoghue , Bjorn Andersson , Sasha Levin Subject: [PATCH 6.5 225/739] arm64: dts: qcom: msm8939: Add missing cache-unified to L2 Date: Mon, 11 Sep 2023 15:40:24 +0200 Message-ID: <20230911134657.463800675@linuxfoundation.org> X-Mailer: git-send-email 2.42.0 In-Reply-To: <20230911134650.921299741@linuxfoundation.org> References: <20230911134650.921299741@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org 6.5-stable review patch. If anyone has any objections, please let me know. ------------------ From: Konrad Dybcio [ Upstream commit 68a59251f1c590ad567ff7fd799f6634fbab6e16 ] Add the missing property to fix the dt checker warning: qcom/apq8039-t2.dtb: l2-cache: 'cache-unified' is a required property Fixes: 61550c6c156c ("arm64: dts: qcom: Add msm8939 SoC") Signed-off-by: Konrad Dybcio Reviewed-by: Krzysztof Kozlowski Reviewed-by: Bryan O'Donoghue Link: https://lore.kernel.org/r/20230627-topic-more_bindings-v1-3-6b4b6cd081e5@linaro.org Signed-off-by: Bjorn Andersson Signed-off-by: Sasha Levin --- arch/arm64/boot/dts/qcom/msm8939.dtsi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm64/boot/dts/qcom/msm8939.dtsi b/arch/arm64/boot/dts/qcom/msm8939.dtsi index 8a856bd8e8e92..3d9270b5482b4 100644 --- a/arch/arm64/boot/dts/qcom/msm8939.dtsi +++ b/arch/arm64/boot/dts/qcom/msm8939.dtsi @@ -55,6 +55,7 @@ CPU0: cpu@100 { L2_1: l2-cache { compatible = "cache"; cache-level = <2>; + cache-unified; }; }; @@ -111,6 +112,7 @@ CPU4: cpu@0 { L2_0: l2-cache { compatible = "cache"; cache-level = <2>; + cache-unified; }; }; -- 2.40.1