mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 1/2] ARM: rdu2: Remove now redundant RAVE SP properties/nodes
@ 2018-10-08  6:33 Andrey Smirnov
  2018-10-08  6:33 ` [PATCH 2/2] ARM: rdu1: " Andrey Smirnov
  2018-10-08  7:56 ` [PATCH 1/2] ARM: rdu2: " Sascha Hauer
  0 siblings, 2 replies; 3+ messages in thread
From: Andrey Smirnov @ 2018-10-08  6:33 UTC (permalink / raw)
  To: barebox; +Cc: Andrey Smirnov

Remove RAVE SP properties/nodes that are now availible from upstream
Linux DTS files.

Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
---
 arch/arm/dts/imx6qdl-zii-rdu2.dtsi | 16 ----------------
 1 file changed, 16 deletions(-)

diff --git a/arch/arm/dts/imx6qdl-zii-rdu2.dtsi b/arch/arm/dts/imx6qdl-zii-rdu2.dtsi
index a74fb4783..f63b5d2ed 100644
--- a/arch/arm/dts/imx6qdl-zii-rdu2.dtsi
+++ b/arch/arm/dts/imx6qdl-zii-rdu2.dtsi
@@ -66,19 +66,7 @@
 			nvmem-cell-names = "boot-source";
 		};
 
-		eeprom@a3 {
-			compatible = "zii,rave-sp-eeprom";
-			reg = <0xa3 0x4000>;
-			zii,eeprom-name = "dds-eeprom";
-		};
-
 		eeprom@a4 {
-			compatible = "zii,rave-sp-eeprom";
-			reg = <0xa4 0x4000>;
-			#address-cells = <1>;
-			#size-cells = <1>;
-			zii,eeprom-name = "main-eeprom";
-
 			boot_source: boot-source@83 {
 				reg = <0x83 1>;
 			};
@@ -91,10 +79,6 @@
 				reg = <0x190 6>;
 			};
 		};
-
-		backlight {
-			compatible = "zii,rave-sp-backlight";
-		};
 	};
 };
 
-- 
2.17.1


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* [PATCH 2/2] ARM: rdu1: Remove now redundant RAVE SP properties/nodes
  2018-10-08  6:33 [PATCH 1/2] ARM: rdu2: Remove now redundant RAVE SP properties/nodes Andrey Smirnov
@ 2018-10-08  6:33 ` Andrey Smirnov
  2018-10-08  7:56 ` [PATCH 1/2] ARM: rdu2: " Sascha Hauer
  1 sibling, 0 replies; 3+ messages in thread
From: Andrey Smirnov @ 2018-10-08  6:33 UTC (permalink / raw)
  To: barebox; +Cc: Andrey Smirnov

Remove RAVE SP properties/nodes that are now availible from upstream
Linux DTS files.

Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
---
 arch/arm/dts/imx51-zii-rdu1.dts | 21 ---------------------
 1 file changed, 21 deletions(-)

diff --git a/arch/arm/dts/imx51-zii-rdu1.dts b/arch/arm/dts/imx51-zii-rdu1.dts
index bde565fe0..93bb344f5 100644
--- a/arch/arm/dts/imx51-zii-rdu1.dts
+++ b/arch/arm/dts/imx51-zii-rdu1.dts
@@ -53,37 +53,16 @@
 
 &uart3 {
 	rave-sp {
-		#address-cells = <1>;
-		#size-cells = <1>;
-
 		watchdog {
 			nvmem-cells = <&boot_source>;
 			nvmem-cell-names = "boot-source";
 		};
 
-		eeprom@a3 {
-			compatible = "zii,rave-sp-eeprom";
-			reg = <0xa3 0x4000>;
-			#address-cells = <1>;
-			#size-cells = <1>;
-			zii,eeprom-name = "dds-eeprom";
-		};
-
 		eeprom@a4 {
-			compatible = "zii,rave-sp-eeprom";
-			reg = <0xa4 0x4000>;
-			#address-cells = <1>;
-			#size-cells = <1>;
-			zii,eeprom-name = "main-eeprom";
-
 			boot_source: boot-source@83 {
 				reg = <0x83 1>;
 			};
 		};
-
-		backlight {
-			compatible = "zii,rave-sp-backlight";
-		};
 	};
 };
 
-- 
2.17.1


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: [PATCH 1/2] ARM: rdu2: Remove now redundant RAVE SP properties/nodes
  2018-10-08  6:33 [PATCH 1/2] ARM: rdu2: Remove now redundant RAVE SP properties/nodes Andrey Smirnov
  2018-10-08  6:33 ` [PATCH 2/2] ARM: rdu1: " Andrey Smirnov
@ 2018-10-08  7:56 ` Sascha Hauer
  1 sibling, 0 replies; 3+ messages in thread
From: Sascha Hauer @ 2018-10-08  7:56 UTC (permalink / raw)
  To: Andrey Smirnov; +Cc: barebox

On Sun, Oct 07, 2018 at 11:33:02PM -0700, Andrey Smirnov wrote:
> Remove RAVE SP properties/nodes that are now availible from upstream
> Linux DTS files.
> 
> Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
> ---
>  arch/arm/dts/imx6qdl-zii-rdu2.dtsi | 16 ----------------
>  1 file changed, 16 deletions(-)

Applied, thanks

Sascha

> 
> diff --git a/arch/arm/dts/imx6qdl-zii-rdu2.dtsi b/arch/arm/dts/imx6qdl-zii-rdu2.dtsi
> index a74fb4783..f63b5d2ed 100644
> --- a/arch/arm/dts/imx6qdl-zii-rdu2.dtsi
> +++ b/arch/arm/dts/imx6qdl-zii-rdu2.dtsi
> @@ -66,19 +66,7 @@
>  			nvmem-cell-names = "boot-source";
>  		};
>  
> -		eeprom@a3 {
> -			compatible = "zii,rave-sp-eeprom";
> -			reg = <0xa3 0x4000>;
> -			zii,eeprom-name = "dds-eeprom";
> -		};
> -
>  		eeprom@a4 {
> -			compatible = "zii,rave-sp-eeprom";
> -			reg = <0xa4 0x4000>;
> -			#address-cells = <1>;
> -			#size-cells = <1>;
> -			zii,eeprom-name = "main-eeprom";
> -
>  			boot_source: boot-source@83 {
>  				reg = <0x83 1>;
>  			};
> @@ -91,10 +79,6 @@
>  				reg = <0x190 6>;
>  			};
>  		};
> -
> -		backlight {
> -			compatible = "zii,rave-sp-backlight";
> -		};
>  	};
>  };
>  
> -- 
> 2.17.1
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

end of thread, other threads:[~2018-10-08  7:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-08  6:33 [PATCH 1/2] ARM: rdu2: Remove now redundant RAVE SP properties/nodes Andrey Smirnov
2018-10-08  6:33 ` [PATCH 2/2] ARM: rdu1: " Andrey Smirnov
2018-10-08  7:56 ` [PATCH 1/2] ARM: rdu2: " Sascha Hauer

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