[PATCH v2 1/5] ARM: dts: qcom: apq8064-pins: correct error in drive-strength property

Rayyan Ansari posted 5 patches 1 year, 5 months ago
[PATCH v2 1/5] ARM: dts: qcom: apq8064-pins: correct error in drive-strength property
Posted by Rayyan Ansari 1 year, 5 months ago
The "drive-strength" property was incorrectly spelt as "drive-strengh".
Correct this.

Signed-off-by: Rayyan Ansari <rayyan.ansari@linaro.org>
---
v1 -> v2: split from main apq8064 patch

 arch/arm/boot/dts/qcom/qcom-apq8064-pins.dtsi | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/arch/arm/boot/dts/qcom/qcom-apq8064-pins.dtsi b/arch/arm/boot/dts/qcom/qcom-apq8064-pins.dtsi
index 7c545c50847b..107fc19f1331 100644
--- a/arch/arm/boot/dts/qcom/qcom-apq8064-pins.dtsi
+++ b/arch/arm/boot/dts/qcom/qcom-apq8064-pins.dtsi
@@ -11,19 +11,19 @@ pios {
 	sdcc1_pins: sdcc1-pin-active {
 		clk {
 			pins = "sdc1_clk";
-			drive-strengh = <16>;
+			drive-strength = <16>;
 			bias-disable;
 		};
 
 		cmd {
 			pins = "sdc1_cmd";
-			drive-strengh = <10>;
+			drive-strength = <10>;
 			bias-pull-up;
 		};
 
 		data {
 			pins = "sdc1_data";
-			drive-strengh = <10>;
+			drive-strength = <10>;
 			bias-pull-up;
 		};
 	};
@@ -31,19 +31,19 @@ data {
 	sdcc3_pins: sdcc3-pin-active {
 		clk {
 			pins = "sdc3_clk";
-			drive-strengh = <8>;
+			drive-strength = <8>;
 			bias-disable;
 		};
 
 		cmd {
 			pins = "sdc3_cmd";
-			drive-strengh = <8>;
+			drive-strength = <8>;
 			bias-pull-up;
 		};
 
 		data {
 			pins = "sdc3_data";
-			drive-strengh = <8>;
+			drive-strength = <8>;
 			bias-pull-up;
 		};
 	};
-- 
2.45.2
Re: [PATCH v2 1/5] ARM: dts: qcom: apq8064-pins: correct error in drive-strength property
Posted by Krzysztof Kozlowski 1 year, 5 months ago
On 11/07/2024 13:01, Rayyan Ansari wrote:
> The "drive-strength" property was incorrectly spelt as "drive-strengh".
> Correct this.
> 
> Signed-off-by: Rayyan Ansari <rayyan.ansari@linaro.org>

Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof
Re: [PATCH v2 1/5] ARM: dts: qcom: apq8064-pins: correct error in drive-strength property
Posted by Konrad Dybcio 1 year, 5 months ago
On 11.07.2024 1:01 PM, Rayyan Ansari wrote:
> The "drive-strength" property was incorrectly spelt as "drive-strengh".
> Correct this.
> 
> Signed-off-by: Rayyan Ansari <rayyan.ansari@linaro.org>
> ---

Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad