All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] dt-bindings: dma: ti-edma: fix example compatible property
@ 2020-02-12 10:48 Johan Hovold
  2020-02-12 13:31 ` Peter Ujfalusi
  2020-02-13 14:41 ` Vinod Koul
  0 siblings, 2 replies; 3+ messages in thread
From: Johan Hovold @ 2020-02-12 10:48 UTC (permalink / raw)
  To: Rob Herring, Vinod Koul
  Cc: Mark Rutland, dmaengine, linux-kernel, Johan Hovold

Make sure that the compatible string in the edma1_tptc1 example node
matches the binding by removing the space between the manufacturer and
model.

Signed-off-by: Johan Hovold <johan@kernel.org>
---
 Documentation/devicetree/bindings/dma/ti-edma.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/dma/ti-edma.txt b/Documentation/devicetree/bindings/dma/ti-edma.txt
index 0e1398f93aa2..29fcd37082e8 100644
--- a/Documentation/devicetree/bindings/dma/ti-edma.txt
+++ b/Documentation/devicetree/bindings/dma/ti-edma.txt
@@ -180,7 +180,7 @@ edma1_tptc0: tptc@27b0000 {
 };
 
 edma1_tptc1: tptc@27b8000 {
-	compatible = "ti, k2g-edma3-tptc", "ti,edma3-tptc";
+	compatible = "ti,k2g-edma3-tptc", "ti,edma3-tptc";
 	reg =	<0x027b8000 0x400>;
 	power-domains = <&k2g_pds 0x4f>;
 };
-- 
2.24.1


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

* Re: [PATCH] dt-bindings: dma: ti-edma: fix example compatible property
  2020-02-12 10:48 [PATCH] dt-bindings: dma: ti-edma: fix example compatible property Johan Hovold
@ 2020-02-12 13:31 ` Peter Ujfalusi
  2020-02-13 14:41 ` Vinod Koul
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Ujfalusi @ 2020-02-12 13:31 UTC (permalink / raw)
  To: Johan Hovold, Rob Herring, Vinod Koul
  Cc: Mark Rutland, dmaengine, linux-kernel



On 12/02/2020 12.48, Johan Hovold wrote:
> Make sure that the compatible string in the edma1_tptc1 example node
> matches the binding by removing the space between the manufacturer and
> model.

Acked-by: Peter Ujfalusi <peter.ujfalusi@ti.com>

> Signed-off-by: Johan Hovold <johan@kernel.org>
> ---
>  Documentation/devicetree/bindings/dma/ti-edma.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/devicetree/bindings/dma/ti-edma.txt b/Documentation/devicetree/bindings/dma/ti-edma.txt
> index 0e1398f93aa2..29fcd37082e8 100644
> --- a/Documentation/devicetree/bindings/dma/ti-edma.txt
> +++ b/Documentation/devicetree/bindings/dma/ti-edma.txt
> @@ -180,7 +180,7 @@ edma1_tptc0: tptc@27b0000 {
>  };
>  
>  edma1_tptc1: tptc@27b8000 {
> -	compatible = "ti, k2g-edma3-tptc", "ti,edma3-tptc";
> +	compatible = "ti,k2g-edma3-tptc", "ti,edma3-tptc";
>  	reg =	<0x027b8000 0x400>;
>  	power-domains = <&k2g_pds 0x4f>;
>  };
> 

- Péter

Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki.
Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki

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

* Re: [PATCH] dt-bindings: dma: ti-edma: fix example compatible property
  2020-02-12 10:48 [PATCH] dt-bindings: dma: ti-edma: fix example compatible property Johan Hovold
  2020-02-12 13:31 ` Peter Ujfalusi
@ 2020-02-13 14:41 ` Vinod Koul
  1 sibling, 0 replies; 3+ messages in thread
From: Vinod Koul @ 2020-02-13 14:41 UTC (permalink / raw)
  To: Johan Hovold; +Cc: Rob Herring, Mark Rutland, dmaengine, linux-kernel

On 12-02-20, 11:48, Johan Hovold wrote:
> Make sure that the compatible string in the edma1_tptc1 example node
> matches the binding by removing the space between the manufacturer and
> model.

Applied, thanks

> 
> Signed-off-by: Johan Hovold <johan@kernel.org>
> ---
>  Documentation/devicetree/bindings/dma/ti-edma.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/devicetree/bindings/dma/ti-edma.txt b/Documentation/devicetree/bindings/dma/ti-edma.txt
> index 0e1398f93aa2..29fcd37082e8 100644
> --- a/Documentation/devicetree/bindings/dma/ti-edma.txt
> +++ b/Documentation/devicetree/bindings/dma/ti-edma.txt
> @@ -180,7 +180,7 @@ edma1_tptc0: tptc@27b0000 {
>  };
>  
>  edma1_tptc1: tptc@27b8000 {
> -	compatible = "ti, k2g-edma3-tptc", "ti,edma3-tptc";
> +	compatible = "ti,k2g-edma3-tptc", "ti,edma3-tptc";
>  	reg =	<0x027b8000 0x400>;
>  	power-domains = <&k2g_pds 0x4f>;
>  };
> -- 
> 2.24.1

-- 
~Vinod

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

end of thread, other threads:[~2020-02-13 14:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-12 10:48 [PATCH] dt-bindings: dma: ti-edma: fix example compatible property Johan Hovold
2020-02-12 13:31 ` Peter Ujfalusi
2020-02-13 14:41 ` Vinod Koul

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.