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 08F2FC001B2 for ; Thu, 22 Dec 2022 12:09:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235891AbiLVMJR (ORCPT ); Thu, 22 Dec 2022 07:09:17 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42080 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235711AbiLVMIz (ORCPT ); Thu, 22 Dec 2022 07:08:55 -0500 Received: from m-r2.th.seeweb.it (m-r2.th.seeweb.it [5.144.164.171]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A4CD42A24A for ; Thu, 22 Dec 2022 03:59:27 -0800 (PST) Received: from SoMainline.org (94-209-172-39.cable.dynamic.v4.ziggo.nl [94.209.172.39]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by m-r2.th.seeweb.it (Postfix) with ESMTPSA id E03143EBD9; Thu, 22 Dec 2022 12:59:23 +0100 (CET) Date: Thu, 22 Dec 2022 12:59:22 +0100 From: Marijn Suijten To: Dzmitry Sankouski Cc: linux-kernel@vger.kernel.org, Andy Gross , Bjorn Andersson , Konrad Dybcio , Rob Herring , Krzysztof Kozlowski , Kees Cook , Anton Vorontsov , Colin Cross , Tony Luck , "open list:ARM/QUALCOMM SUPPORT" , "open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS" Subject: Re: [PATCH v12 2/2] arm64: dts: qcom: sagit: add initial device tree for sagit Message-ID: <20221222115922.jlachctn4lxopp7a@SoMainline.org> References: <20221112203300.536010-1-dsankouski@gmail.com> <20221112203300.536010-3-dsankouski@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20221112203300.536010-3-dsankouski@gmail.com> Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On 2022-11-12 23:33:00, Dzmitry Sankouski wrote: > New device support - Xiaomi Mi6 phone > diff --git a/arch/arm64/boot/dts/qcom/pm8998.dtsi b/arch/arm64/boot/dts/qcom/pm8998.dtsi > index 6a0e14382be8..6a5854333b2b 100644 > --- a/arch/arm64/boot/dts/qcom/pm8998.dtsi > +++ b/arch/arm64/boot/dts/qcom/pm8998.dtsi > @@ -52,6 +52,14 @@ pm8998_pwrkey: pwrkey { > bias-pull-up; > linux,code = ; > }; > + > + pm8998_resin: resin { > + compatible = "qcom,pm8941-resin"; > + interrupts = ; > + debounce = <15625>; > + bias-pull-up; > + status = "disabled"; > + }; This should have been a separate patch, one that deduplicated overlapping nodes with existing msm8998 / sdm845 boards which all add this node individually to &pm8998_pon. What's more, their override has the same node name and will be merged with this one without setting status = "okay", leading to all those boards suddenly having a broken resin key because they inherit your status="disabled". Can you send a fix to address that, with proper Fixes: tag? - Marijn > }; > > pm8998_temp: temp-alarm@2400 { > -- > 2.30.2 >