Message ID | 20240806114931.40090-1-krzysztof.kozlowski@linaro.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 2f3e2c9eaafc272266344d777f8de44f8632e247 |
Headers | show |
Series | [1/4] ASoC: dt-bindings: qcom,wcd937x: Correct reset GPIO polarity in example | expand |
On Tue, 06 Aug 2024 13:49:28 +0200, Krzysztof Kozlowski wrote: > The reset GPIO of WCD9370/WCD9375 is active low and that's how it is > routed on typical boards, so correct the example DTS to use expected > polarity. > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/4] ASoC: dt-bindings: qcom,wcd937x: Correct reset GPIO polarity in example commit: 2f3e2c9eaafc272266344d777f8de44f8632e247 [2/4] ASoC: dt-bindings: qcom,wcd934x: Correct reset GPIO polarity in example commit: 55922275702e112652d314a9b6a6ca31d4b7252e [3/4] ASoC: dt-bindings: qcom,wcd938x: Correct reset GPIO polarity in example commit: 871f1a16fa3506487de24b05d68be45e9185e77a [4/4] ASoC: dt-bindings: qcom,wcd939x: Correct reset GPIO polarity in example commit: 81f88fddef9cddae6b4e5d9359022c7a2a3e3b6a All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
diff --git a/Documentation/devicetree/bindings/sound/qcom,wcd937x.yaml b/Documentation/devicetree/bindings/sound/qcom,wcd937x.yaml index de397d879acc..f94203798f24 100644 --- a/Documentation/devicetree/bindings/sound/qcom,wcd937x.yaml +++ b/Documentation/devicetree/bindings/sound/qcom,wcd937x.yaml @@ -42,7 +42,7 @@ examples: pinctrl-names = "default", "sleep"; pinctrl-0 = <&wcd_reset_n>; pinctrl-1 = <&wcd_reset_n_sleep>; - reset-gpios = <&tlmm 83 GPIO_ACTIVE_HIGH>; + reset-gpios = <&tlmm 83 GPIO_ACTIVE_LOW>; vdd-buck-supply = <&vreg_l17b_1p8>; vdd-rxtx-supply = <&vreg_l18b_1p8>; vdd-px-supply = <&vreg_l18b_1p8>;
The reset GPIO of WCD9370/WCD9375 is active low and that's how it is routed on typical boards, so correct the example DTS to use expected polarity. Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> --- Cc: Alexey Klimov <alexey.klimov@linaro.org> --- Documentation/devicetree/bindings/sound/qcom,wcd937x.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)