Linux ARM-MSM sub-architecture
 help / color / mirror / Atom feed
* [PATCH] regulator: dt-bindings: qcom,rpmh: Correct PM8550VE supplies
@ 2024-11-12  0:35 Melody Olvera
  2024-11-12 17:20 ` Rob Herring (Arm)
  2024-11-13 17:47 ` Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Melody Olvera @ 2024-11-12  0:35 UTC (permalink / raw)
  To: Liam Girdwood, Mark Brown, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Bjorn Andersson, Abel Vesa, Trilok Soni,
	Satya Durga Srinivasu Prabhala
  Cc: linux-arm-msm, linux-kernel, devicetree, Melody Olvera

The PM8550VE has two more supplies (s1-8) than the PM8550VS (s1-6),
so move to a correct if:then: clause to accurately reflect that.

Fixes: 902f8c9830c3 ("regulator: dt-bindings: qcom,rpmh: Correct PM8550 family supplies")
Signed-off-by: Melody Olvera <quic_molvera@quicinc.com>
---
 .../devicetree/bindings/regulator/qcom,rpmh-regulator.yaml      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/regulator/qcom,rpmh-regulator.yaml b/Documentation/devicetree/bindings/regulator/qcom,rpmh-regulator.yaml
index 27c6d5152413..3a5a0a6cf5cc 100644
--- a/Documentation/devicetree/bindings/regulator/qcom,rpmh-regulator.yaml
+++ b/Documentation/devicetree/bindings/regulator/qcom,rpmh-regulator.yaml
@@ -349,7 +349,6 @@ allOf:
       properties:
         compatible:
           enum:
-            - qcom,pm8550ve-rpmh-regulators
             - qcom,pm8550vs-rpmh-regulators
     then:
       patternProperties:
@@ -385,6 +384,7 @@ allOf:
         compatible:
           enum:
             - qcom,pmc8380-rpmh-regulators
+            - qcom,pm8550ve-rpmh-regulators
     then:
       patternProperties:
         "^vdd-l[1-3]-supply$": true

base-commit: 6d59cab07b8d74d0f0422b750038123334f6ecc2
-- 
2.46.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] regulator: dt-bindings: qcom,rpmh: Correct PM8550VE supplies
  2024-11-12  0:35 [PATCH] regulator: dt-bindings: qcom,rpmh: Correct PM8550VE supplies Melody Olvera
@ 2024-11-12 17:20 ` Rob Herring (Arm)
  2024-11-13 17:47 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Rob Herring (Arm) @ 2024-11-12 17:20 UTC (permalink / raw)
  To: Melody Olvera
  Cc: Bjorn Andersson, Liam Girdwood, linux-arm-msm,
	Krzysztof Kozlowski, linux-kernel, Trilok Soni,
	Satya Durga Srinivasu Prabhala, Conor Dooley, Mark Brown,
	devicetree, Abel Vesa


On Mon, 11 Nov 2024 16:35:44 -0800, Melody Olvera wrote:
> The PM8550VE has two more supplies (s1-8) than the PM8550VS (s1-6),
> so move to a correct if:then: clause to accurately reflect that.
> 
> Fixes: 902f8c9830c3 ("regulator: dt-bindings: qcom,rpmh: Correct PM8550 family supplies")
> Signed-off-by: Melody Olvera <quic_molvera@quicinc.com>
> ---
>  .../devicetree/bindings/regulator/qcom,rpmh-regulator.yaml      | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 

Acked-by: Rob Herring (Arm) <robh@kernel.org>


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] regulator: dt-bindings: qcom,rpmh: Correct PM8550VE supplies
  2024-11-12  0:35 [PATCH] regulator: dt-bindings: qcom,rpmh: Correct PM8550VE supplies Melody Olvera
  2024-11-12 17:20 ` Rob Herring (Arm)
@ 2024-11-13 17:47 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2024-11-13 17:47 UTC (permalink / raw)
  To: Liam Girdwood, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Bjorn Andersson, Abel Vesa, Trilok Soni,
	Satya Durga Srinivasu Prabhala, Melody Olvera
  Cc: linux-arm-msm, linux-kernel, devicetree

On Mon, 11 Nov 2024 16:35:44 -0800, Melody Olvera wrote:
> The PM8550VE has two more supplies (s1-8) than the PM8550VS (s1-6),
> so move to a correct if:then: clause to accurately reflect that.
> 
> 

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git for-next

Thanks!

[1/1] regulator: dt-bindings: qcom,rpmh: Correct PM8550VE supplies
      commit: 21ccadc64dae18bd092f1255bdbaf595f53381d5

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


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-11-13 17:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-12  0:35 [PATCH] regulator: dt-bindings: qcom,rpmh: Correct PM8550VE supplies Melody Olvera
2024-11-12 17:20 ` Rob Herring (Arm)
2024-11-13 17:47 ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox