All of lore.kernel.org
 help / color / mirror / Atom feed
From: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
To: Andy Gross <agross@kernel.org>,
	Bjorn Andersson <bjorn.andersson@linaro.org>,
	Konrad Dybcio <konrad.dybcio@somainline.org>,
	Lee Jones <lee@kernel.org>, Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Stephen Boyd <sboyd@kernel.org>, Vinod Koul <vkoul@kernel.org>,
	David Heidelberg <david@ixit.cz>,
	linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org
Cc: Bryan O'Donoghue <bryan.odonoghue@linaro.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>,
	stable@vger.kernel.org
Subject: [PATCH 12/14] arm64: dts: qcom: sdm845-mtp: correct ADC settle time
Date: Sun, 28 Aug 2022 11:43:39 +0300	[thread overview]
Message-ID: <20220828084341.112146-13-krzysztof.kozlowski@linaro.org> (raw)
In-Reply-To: <20220828084341.112146-1-krzysztof.kozlowski@linaro.org>

The PMIC's VADC property for settle time is qcom,hw-settle-time, not
qcom,hw-settle-time-us.  The latter is used in PMIC's TM ADC.

  qcom/sdm845-mtp.dtb: pmic@0: adc@3100:adc-chan@4c: 'qcom,hw-settle-time-us' does not match any of the regexes: 'pinctrl-[0-9]+'

Fixes: d5e12f3823ae ("arm64: dts: qcom: sdm845: mtp: Add vadc channels and thermal zones")
Cc: <stable@vger.kernel.org>
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm64/boot/dts/qcom/sdm845-mtp.dts | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/arch/arm64/boot/dts/qcom/sdm845-mtp.dts b/arch/arm64/boot/dts/qcom/sdm845-mtp.dts
index 7713e8060c5b..de2d10e0315a 100644
--- a/arch/arm64/boot/dts/qcom/sdm845-mtp.dts
+++ b/arch/arm64/boot/dts/qcom/sdm845-mtp.dts
@@ -536,42 +536,42 @@ adc-chan@4c {
 		reg = <ADC5_XO_THERM_100K_PU>;
 		label = "xo_therm";
 		qcom,ratiometric;
-		qcom,hw-settle-time-us = <200>;
+		qcom,hw-settle-time = <200>;
 	};
 
 	adc-chan@4d {
 		reg = <ADC5_AMUX_THM1_100K_PU>;
 		label = "msm_therm";
 		qcom,ratiometric;
-		qcom,hw-settle-time-us = <200>;
+		qcom,hw-settle-time = <200>;
 	};
 
 	adc-chan@4f {
 		reg = <ADC5_AMUX_THM3_100K_PU>;
 		label = "pa_therm1";
 		qcom,ratiometric;
-		qcom,hw-settle-time-us = <200>;
+		qcom,hw-settle-time = <200>;
 	};
 
 	adc-chan@51 {
 		reg = <ADC5_AMUX_THM5_100K_PU>;
 		label = "quiet_therm";
 		qcom,ratiometric;
-		qcom,hw-settle-time-us = <200>;
+		qcom,hw-settle-time = <200>;
 	};
 
 	adc-chan@83 {
 		reg = <ADC5_VPH_PWR>;
 		label = "vph_pwr";
 		qcom,ratiometric;
-		qcom,hw-settle-time-us = <200>;
+		qcom,hw-settle-time = <200>;
 	};
 
 	adc-chan@85 {
 		reg = <ADC5_VCOIN>;
 		label = "vcoin";
 		qcom,ratiometric;
-		qcom,hw-settle-time-us = <200>;
+		qcom,hw-settle-time = <200>;
 	};
 };
 
-- 
2.34.1


  parent reply	other threads:[~2022-08-28  8:44 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-28  8:43 [PATCH 00/14] arm64/dt-bindings: mfd: qcom: SPMI PMIC fixes Krzysztof Kozlowski
2022-08-28  8:43 ` [PATCH 01/14] ARM: dts: qcom: align SPMI PMIC ADC node name with dtschema Krzysztof Kozlowski
2022-08-28  8:43 ` [PATCH 02/14] ARM: dts: qcom: pm8941: align SPMI PMIC LPG " Krzysztof Kozlowski
2022-08-28  8:43 ` [PATCH 03/14] ARM: dts: qcom: pmx55: align SPMI PMIC Power-on " Krzysztof Kozlowski
2022-08-28  8:43 ` [PATCH 04/14] arm64: dts: qcom: pmk8350: drop incorrect io-channel-ranges Krzysztof Kozlowski
2022-08-28  8:43 ` [PATCH 05/14] arm64: dts: qcom: pmk8350: drop interrupt-names from ADC Krzysztof Kozlowski
2022-08-28  8:43 ` [PATCH 06/14] arm64: dts: qcom: align SPMI PMIC ADC node name with dtschema Krzysztof Kozlowski
2022-08-28  8:43 ` [PATCH 07/14] arm64: dts: qcom: align SPMI PMIC regulators " Krzysztof Kozlowski
2022-08-28  8:43 ` [PATCH 08/14] arm64: dts: qcom: align SPMI PMIC LPG " Krzysztof Kozlowski
2022-08-28  8:43 ` [PATCH 09/14] arm64: dts: qcom: align SPMI PMIC Power-on " Krzysztof Kozlowski
2022-08-28  8:43 ` [PATCH 10/14] arm64: dts: qcom: align PMIC GPIO pin configuration with DT schema Krzysztof Kozlowski
2022-08-28  8:43 ` [PATCH 11/14] arm64: dts: qcom: sc7280-idp: correct ADC channel node name and unit address Krzysztof Kozlowski
2022-08-28  8:43 ` Krzysztof Kozlowski [this message]
2022-08-28  8:43 ` [PATCH 13/14] dt-bindings: mfd: qcom,spmi-pmic: fix regulator node schema Krzysztof Kozlowski
2022-08-30 16:26   ` Rob Herring
2022-09-05 14:49   ` Lee Jones
2022-08-28  8:43 ` [PATCH 14/14] dt-bindings: mfd: qcom,spmi-pmic: fix TM ADC node schema on PM8998 Krzysztof Kozlowski
2022-08-30 16:27   ` Rob Herring
2022-09-05 14:52   ` Lee Jones
2022-08-29 14:54 ` [PATCH 00/14] arm64/dt-bindings: mfd: qcom: SPMI PMIC fixes David Heidelberg
2022-08-29 17:00 ` Vinod Koul
2022-08-29 22:07 ` Stephen Boyd
2022-08-30  3:26 ` (subset) " Bjorn Andersson
2022-08-30  3:28   ` Bjorn Andersson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220828084341.112146-13-krzysztof.kozlowski@linaro.org \
    --to=krzysztof.kozlowski@linaro.org \
    --cc=agross@kernel.org \
    --cc=bjorn.andersson@linaro.org \
    --cc=bryan.odonoghue@linaro.org \
    --cc=david@ixit.cz \
    --cc=devicetree@vger.kernel.org \
    --cc=konrad.dybcio@somainline.org \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=lee@kernel.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=robh+dt@kernel.org \
    --cc=sboyd@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=vkoul@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.