devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dt-bindings: PCI: qcom: Correct reset-names property
@ 2023-11-11 14:20 Krzysztof Kozlowski
  2023-11-11 16:31 ` Conor Dooley
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2023-11-11 14:20 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Bjorn Helgaas,
	Lorenzo Pieralisi, Krzysztof Wilczyński, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Manivannan Sadhasivam,
	Dmitry Baryshkov, linux-arm-msm, linux-pci, devicetree,
	linux-kernel
  Cc: Krzysztof Kozlowski

There is no "resets-names" property, but "reset-names".

Fixes: 075a9d55932e ("dt-bindings: PCI: qcom: Convert to YAML")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 Documentation/devicetree/bindings/pci/qcom,pcie.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/pci/qcom,pcie.yaml b/Documentation/devicetree/bindings/pci/qcom,pcie.yaml
index eadba38171e1..8bfae8eb79a3 100644
--- a/Documentation/devicetree/bindings/pci/qcom,pcie.yaml
+++ b/Documentation/devicetree/bindings/pci/qcom,pcie.yaml
@@ -88,7 +88,7 @@ properties:
     minItems: 1
     maxItems: 12
 
-  resets-names:
+  reset-names:
     minItems: 1
     maxItems: 12
 
-- 
2.34.1


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

* Re: [PATCH] dt-bindings: PCI: qcom: Correct reset-names property
  2023-11-11 14:20 [PATCH] dt-bindings: PCI: qcom: Correct reset-names property Krzysztof Kozlowski
@ 2023-11-11 16:31 ` Conor Dooley
  2023-12-08  9:51 ` Krzysztof Kozlowski
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Conor Dooley @ 2023-11-11 16:31 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Bjorn Helgaas,
	Lorenzo Pieralisi, Krzysztof Wilczyński, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Manivannan Sadhasivam,
	Dmitry Baryshkov, linux-arm-msm, linux-pci, devicetree,
	linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1009 bytes --]

On Sat, Nov 11, 2023 at 03:20:06PM +0100, Krzysztof Kozlowski wrote:
> There is no "resets-names" property, but "reset-names".
> 
> Fixes: 075a9d55932e ("dt-bindings: PCI: qcom: Convert to YAML")

The original text binding did in fact use reset not resets.
Acked-by: Conor Dooley <conor.dooley@microchip.com>

Cheers,
Conor.

> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  Documentation/devicetree/bindings/pci/qcom,pcie.yaml | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/devicetree/bindings/pci/qcom,pcie.yaml b/Documentation/devicetree/bindings/pci/qcom,pcie.yaml
> index eadba38171e1..8bfae8eb79a3 100644
> --- a/Documentation/devicetree/bindings/pci/qcom,pcie.yaml
> +++ b/Documentation/devicetree/bindings/pci/qcom,pcie.yaml
> @@ -88,7 +88,7 @@ properties:
>      minItems: 1
>      maxItems: 12
>  
> -  resets-names:
> +  reset-names:
>      minItems: 1
>      maxItems: 12
>  
> -- 
> 2.34.1
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

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

* Re: [PATCH] dt-bindings: PCI: qcom: Correct reset-names property
  2023-11-11 14:20 [PATCH] dt-bindings: PCI: qcom: Correct reset-names property Krzysztof Kozlowski
  2023-11-11 16:31 ` Conor Dooley
@ 2023-12-08  9:51 ` Krzysztof Kozlowski
  2023-12-16  0:03   ` Krzysztof Wilczyński
  2023-12-08 10:34 ` Manivannan Sadhasivam
  2023-12-16  0:02 ` Krzysztof Wilczyński
  3 siblings, 1 reply; 6+ messages in thread
From: Krzysztof Kozlowski @ 2023-12-08  9:51 UTC (permalink / raw)
  To: Lorenzo Pieralisi, Bjorn Helgaas, Krzysztof Wilczyński
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Manivannan Sadhasivam,
	Dmitry Baryshkov, linux-arm-msm, linux-pci, devicetree,
	linux-kernel

On 11/11/2023 15:20, Krzysztof Kozlowski wrote:
> There is no "resets-names" property, but "reset-names".
> 
> Fixes: 075a9d55932e ("dt-bindings: PCI: qcom: Convert to YAML")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---

Krzysztof W., Bjorn H., Lorenzo,

Can you pick this one via PCI tree?

Best regards,
Krzysztof


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

* Re: [PATCH] dt-bindings: PCI: qcom: Correct reset-names property
  2023-11-11 14:20 [PATCH] dt-bindings: PCI: qcom: Correct reset-names property Krzysztof Kozlowski
  2023-11-11 16:31 ` Conor Dooley
  2023-12-08  9:51 ` Krzysztof Kozlowski
@ 2023-12-08 10:34 ` Manivannan Sadhasivam
  2023-12-16  0:02 ` Krzysztof Wilczyński
  3 siblings, 0 replies; 6+ messages in thread
From: Manivannan Sadhasivam @ 2023-12-08 10:34 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Bjorn Helgaas,
	Lorenzo Pieralisi, Krzysztof Wilczyński, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Manivannan Sadhasivam,
	Dmitry Baryshkov, linux-arm-msm, linux-pci, devicetree,
	linux-kernel

On Sat, Nov 11, 2023 at 03:20:06PM +0100, Krzysztof Kozlowski wrote:
> There is no "resets-names" property, but "reset-names".
> 
> Fixes: 075a9d55932e ("dt-bindings: PCI: qcom: Convert to YAML")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>

- Mani

> ---
>  Documentation/devicetree/bindings/pci/qcom,pcie.yaml | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/devicetree/bindings/pci/qcom,pcie.yaml b/Documentation/devicetree/bindings/pci/qcom,pcie.yaml
> index eadba38171e1..8bfae8eb79a3 100644
> --- a/Documentation/devicetree/bindings/pci/qcom,pcie.yaml
> +++ b/Documentation/devicetree/bindings/pci/qcom,pcie.yaml
> @@ -88,7 +88,7 @@ properties:
>      minItems: 1
>      maxItems: 12
>  
> -  resets-names:
> +  reset-names:
>      minItems: 1
>      maxItems: 12
>  
> -- 
> 2.34.1
> 

-- 
மணிவண்ணன் சதாசிவம்

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

* Re: [PATCH] dt-bindings: PCI: qcom: Correct reset-names property
  2023-11-11 14:20 [PATCH] dt-bindings: PCI: qcom: Correct reset-names property Krzysztof Kozlowski
                   ` (2 preceding siblings ...)
  2023-12-08 10:34 ` Manivannan Sadhasivam
@ 2023-12-16  0:02 ` Krzysztof Wilczyński
  3 siblings, 0 replies; 6+ messages in thread
From: Krzysztof Wilczyński @ 2023-12-16  0:02 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Bjorn Helgaas,
	Lorenzo Pieralisi, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Manivannan Sadhasivam, Dmitry Baryshkov, linux-arm-msm, linux-pci,
	devicetree, linux-kernel

Hello,

> There is no "resets-names" property, but "reset-names".

Applied to dt-bindings, thank you!

[1/1] dt-bindings: PCI: qcom: Correct reset-names property
      https://git.kernel.org/pci/pci/c/3b74713a0321

	Krzysztof

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

* Re: [PATCH] dt-bindings: PCI: qcom: Correct reset-names property
  2023-12-08  9:51 ` Krzysztof Kozlowski
@ 2023-12-16  0:03   ` Krzysztof Wilczyński
  0 siblings, 0 replies; 6+ messages in thread
From: Krzysztof Wilczyński @ 2023-12-16  0:03 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Lorenzo Pieralisi, Bjorn Helgaas, Andy Gross, Bjorn Andersson,
	Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Manivannan Sadhasivam, Dmitry Baryshkov, linux-arm-msm, linux-pci,
	devicetree, linux-kernel

Hello,

> > There is no "resets-names" property, but "reset-names".
[...]
> Krzysztof W., Bjorn H., Lorenzo,
> 
> Can you pick this one via PCI tree?

Done.  Apologies for the delay!

	Krzysztof

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

end of thread, other threads:[~2023-12-16  0:03 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-11 14:20 [PATCH] dt-bindings: PCI: qcom: Correct reset-names property Krzysztof Kozlowski
2023-11-11 16:31 ` Conor Dooley
2023-12-08  9:51 ` Krzysztof Kozlowski
2023-12-16  0:03   ` Krzysztof Wilczyński
2023-12-08 10:34 ` Manivannan Sadhasivam
2023-12-16  0:02 ` Krzysztof Wilczyński

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).