diff options
| author | Rayyan Ansari <[email protected]> | 2024-07-11 12:01:38 +0100 |
|---|---|---|
| committer | Bjorn Andersson <[email protected]> | 2024-07-28 21:40:55 -0500 |
| commit | 046301eafc3296efe7266832b47c9cc93ff0ad38 (patch) | |
| tree | 6d73102da5c8d2293dd7f80d5916066ab12deb8e | |
| parent | 611cd69fe4c737c37a79ef7b99a2f15aff252d1d (diff) | |
ARM: dts: qcom: apq8064-pins: correct error in drive-strength property
The "drive-strength" property was incorrectly spelt as "drive-strengh".
Correct this.
Signed-off-by: Rayyan Ansari <[email protected]>
Reviewed-by: Konrad Dybcio <[email protected]>
Reviewed-by: Krzysztof Kozlowski <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Bjorn Andersson <[email protected]>
| -rw-r--r-- | arch/arm/boot/dts/qcom/qcom-apq8064-pins.dtsi | 12 |
1 files 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 @@ 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 @@ 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; }; }; |