stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: dts: at91: sama7g5: Remove unused properties in i2c nodes
@ 2022-03-02 16:18 Tudor Ambarus
  2022-03-02 17:17 ` Eugen.Hristev
  2022-03-04 10:40 ` Nicolas Ferre
  0 siblings, 2 replies; 3+ messages in thread
From: Tudor Ambarus @ 2022-03-02 16:18 UTC (permalink / raw)
  To: nicolas.ferre, claudiu.beznea, alexandre.belloni
  Cc: robh+dt, eugen.hristev, codrin.ciubotariu, linux-arm-kernel,
	devicetree, linux-kernel, sergiu.moga, Tudor Ambarus, stable

The "atmel,use-dma-rx", "atmel,use-dma-rx" dt properties are not used by
the i2c-at91 driver, nor they are defined in the bindings file, thus remove
them.

Cc: stable@vger.kernel.org
Fixes: 7540629e2fc7 ("ARM: dts: at91: add sama7g5 SoC DT and sama7g5-ek")
Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com>
---
 arch/arm/boot/dts/sama7g5.dtsi | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/arch/arm/boot/dts/sama7g5.dtsi b/arch/arm/boot/dts/sama7g5.dtsi
index 1dc0631e9fd4..e626f6bd920a 100644
--- a/arch/arm/boot/dts/sama7g5.dtsi
+++ b/arch/arm/boot/dts/sama7g5.dtsi
@@ -591,8 +591,6 @@ i2c1: i2c@600 {
 				dmas = <&dma0 AT91_XDMAC_DT_PERID(7)>,
 					<&dma0 AT91_XDMAC_DT_PERID(8)>;
 				dma-names = "rx", "tx";
-				atmel,use-dma-rx;
-				atmel,use-dma-tx;
 				status = "disabled";
 			};
 		};
@@ -778,8 +776,6 @@ i2c8: i2c@600 {
 				dmas = <&dma0 AT91_XDMAC_DT_PERID(21)>,
 					<&dma0 AT91_XDMAC_DT_PERID(22)>;
 				dma-names = "rx", "tx";
-				atmel,use-dma-rx;
-				atmel,use-dma-tx;
 				status = "disabled";
 			};
 		};
@@ -804,8 +800,6 @@ i2c9: i2c@600 {
 				dmas = <&dma0 AT91_XDMAC_DT_PERID(23)>,
 					<&dma0 AT91_XDMAC_DT_PERID(24)>;
 				dma-names = "rx", "tx";
-				atmel,use-dma-rx;
-				atmel,use-dma-tx;
 				status = "disabled";
 			};
 		};
-- 
2.25.1


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

* Re: [PATCH] ARM: dts: at91: sama7g5: Remove unused properties in i2c nodes
  2022-03-02 16:18 [PATCH] ARM: dts: at91: sama7g5: Remove unused properties in i2c nodes Tudor Ambarus
@ 2022-03-02 17:17 ` Eugen.Hristev
  2022-03-04 10:40 ` Nicolas Ferre
  1 sibling, 0 replies; 3+ messages in thread
From: Eugen.Hristev @ 2022-03-02 17:17 UTC (permalink / raw)
  To: Tudor.Ambarus, Nicolas.Ferre, Claudiu.Beznea, alexandre.belloni
  Cc: robh+dt, Codrin.Ciubotariu, linux-arm-kernel, devicetree,
	linux-kernel, Sergiu.Moga, stable

On 3/2/22 6:18 PM, Tudor Ambarus wrote:
> The "atmel,use-dma-rx", "atmel,use-dma-rx" dt properties are not used by
> the i2c-at91 driver, nor they are defined in the bindings file, thus remove
> them.
> 
> Cc: stable@vger.kernel.org
> Fixes: 7540629e2fc7 ("ARM: dts: at91: add sama7g5 SoC DT and sama7g5-ek")
> Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com>
> ---

Thank you Tudor,

Reviewed-by: Eugen Hristev <eugen.hristev@microchip.com>

>   arch/arm/boot/dts/sama7g5.dtsi | 6 ------
>   1 file changed, 6 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/sama7g5.dtsi b/arch/arm/boot/dts/sama7g5.dtsi
> index 1dc0631e9fd4..e626f6bd920a 100644
> --- a/arch/arm/boot/dts/sama7g5.dtsi
> +++ b/arch/arm/boot/dts/sama7g5.dtsi
> @@ -591,8 +591,6 @@ i2c1: i2c@600 {
>   				dmas = <&dma0 AT91_XDMAC_DT_PERID(7)>,
>   					<&dma0 AT91_XDMAC_DT_PERID(8)>;
>   				dma-names = "rx", "tx";
> -				atmel,use-dma-rx;
> -				atmel,use-dma-tx;
>   				status = "disabled";
>   			};
>   		};
> @@ -778,8 +776,6 @@ i2c8: i2c@600 {
>   				dmas = <&dma0 AT91_XDMAC_DT_PERID(21)>,
>   					<&dma0 AT91_XDMAC_DT_PERID(22)>;
>   				dma-names = "rx", "tx";
> -				atmel,use-dma-rx;
> -				atmel,use-dma-tx;
>   				status = "disabled";
>   			};
>   		};
> @@ -804,8 +800,6 @@ i2c9: i2c@600 {
>   				dmas = <&dma0 AT91_XDMAC_DT_PERID(23)>,
>   					<&dma0 AT91_XDMAC_DT_PERID(24)>;
>   				dma-names = "rx", "tx";
> -				atmel,use-dma-rx;
> -				atmel,use-dma-tx;
>   				status = "disabled";
>   			};
>   		};
> 


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

* Re: [PATCH] ARM: dts: at91: sama7g5: Remove unused properties in i2c nodes
  2022-03-02 16:18 [PATCH] ARM: dts: at91: sama7g5: Remove unused properties in i2c nodes Tudor Ambarus
  2022-03-02 17:17 ` Eugen.Hristev
@ 2022-03-04 10:40 ` Nicolas Ferre
  1 sibling, 0 replies; 3+ messages in thread
From: Nicolas Ferre @ 2022-03-04 10:40 UTC (permalink / raw)
  To: Tudor Ambarus, claudiu.beznea, alexandre.belloni
  Cc: robh+dt, eugen.hristev, codrin.ciubotariu, linux-arm-kernel,
	devicetree, linux-kernel, sergiu.moga, stable

On 02/03/2022 at 17:18, Tudor Ambarus wrote:
> The "atmel,use-dma-rx", "atmel,use-dma-rx" dt properties are not used by
> the i2c-at91 driver, nor they are defined in the bindings file, thus remove
> them.
> 
> Cc: stable@vger.kernel.org
> Fixes: 7540629e2fc7 ("ARM: dts: at91: add sama7g5 SoC DT and sama7g5-ek")
> Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com>

Acked-by: Nicolas Ferre <nicolas.ferre@microchip.com>

Added in at91-dt for 5.18 as a 2nd batch of DT patches.
Thanks, best regards,
   Nicolas

> ---
>   arch/arm/boot/dts/sama7g5.dtsi | 6 ------
>   1 file changed, 6 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/sama7g5.dtsi b/arch/arm/boot/dts/sama7g5.dtsi
> index 1dc0631e9fd4..e626f6bd920a 100644
> --- a/arch/arm/boot/dts/sama7g5.dtsi
> +++ b/arch/arm/boot/dts/sama7g5.dtsi
> @@ -591,8 +591,6 @@ i2c1: i2c@600 {
>   				dmas = <&dma0 AT91_XDMAC_DT_PERID(7)>,
>   					<&dma0 AT91_XDMAC_DT_PERID(8)>;
>   				dma-names = "rx", "tx";
> -				atmel,use-dma-rx;
> -				atmel,use-dma-tx;
>   				status = "disabled";
>   			};
>   		};
> @@ -778,8 +776,6 @@ i2c8: i2c@600 {
>   				dmas = <&dma0 AT91_XDMAC_DT_PERID(21)>,
>   					<&dma0 AT91_XDMAC_DT_PERID(22)>;
>   				dma-names = "rx", "tx";
> -				atmel,use-dma-rx;
> -				atmel,use-dma-tx;
>   				status = "disabled";
>   			};
>   		};
> @@ -804,8 +800,6 @@ i2c9: i2c@600 {
>   				dmas = <&dma0 AT91_XDMAC_DT_PERID(23)>,
>   					<&dma0 AT91_XDMAC_DT_PERID(24)>;
>   				dma-names = "rx", "tx";
> -				atmel,use-dma-rx;
> -				atmel,use-dma-tx;
>   				status = "disabled";
>   			};
>   		};


-- 
Nicolas Ferre

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

end of thread, other threads:[~2022-03-04 10:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-02 16:18 [PATCH] ARM: dts: at91: sama7g5: Remove unused properties in i2c nodes Tudor Ambarus
2022-03-02 17:17 ` Eugen.Hristev
2022-03-04 10:40 ` Nicolas Ferre

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).