All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: at91/at91rm9200ek.dts: rearrange nodes in address ascending order
@ 2013-12-09 13:43 Nicolas Ferre
  2013-12-09 14:05 ` boris brezillon
  0 siblings, 1 reply; 2+ messages in thread
From: Nicolas Ferre @ 2013-12-09 13:43 UTC (permalink / raw)
  To: linux-arm-kernel

Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
---
 arch/arm/boot/dts/at91rm9200ek.dts | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/arch/arm/boot/dts/at91rm9200ek.dts b/arch/arm/boot/dts/at91rm9200ek.dts
index 31f5c3293d07..df6b0aa0e4dd 100644
--- a/arch/arm/boot/dts/at91rm9200ek.dts
+++ b/arch/arm/boot/dts/at91rm9200ek.dts
@@ -29,18 +29,9 @@
 
 	ahb {
 		apb {
-			dbgu: serial at fffff200 {
-				status = "okay";
-			};
-
-			usart1: serial at fffc4000 {
-				pinctrl-0 =
-						<&pinctrl_uart1
-						 &pinctrl_uart1_rts
-						 &pinctrl_uart1_cts
-						 &pinctrl_uart1_dtr_dsr
-						 &pinctrl_uart1_dcd
-						 &pinctrl_uart1_ri>;
+			usb1: gadget at fffb0000 {
+				atmel,vbus-gpio = <&pioD 4 GPIO_ACTIVE_HIGH>;
+				atmel,pullup-gpio = <&pioD 5 GPIO_ACTIVE_HIGH>;
 				status = "okay";
 			};
 
@@ -54,9 +45,14 @@
 				};
 			};
 
-			usb1: gadget at fffb0000 {
-				atmel,vbus-gpio = <&pioD 4 GPIO_ACTIVE_HIGH>;
-				atmel,pullup-gpio = <&pioD 5 GPIO_ACTIVE_HIGH>;
+			usart1: serial at fffc4000 {
+				pinctrl-0 =
+						<&pinctrl_uart1
+						 &pinctrl_uart1_rts
+						 &pinctrl_uart1_cts
+						 &pinctrl_uart1_dtr_dsr
+						 &pinctrl_uart1_dcd
+						 &pinctrl_uart1_ri>;
 				status = "okay";
 			};
 
@@ -69,6 +65,10 @@
 					reg = <0>;
 				};
 			};
+
+			dbgu: serial at fffff200 {
+				status = "okay";
+			};
 		};
 
 		usb0: ohci at 00300000 {
-- 
1.8.2.2

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

* [PATCH] ARM: at91/at91rm9200ek.dts: rearrange nodes in address ascending order
  2013-12-09 13:43 [PATCH] ARM: at91/at91rm9200ek.dts: rearrange nodes in address ascending order Nicolas Ferre
@ 2013-12-09 14:05 ` boris brezillon
  0 siblings, 0 replies; 2+ messages in thread
From: boris brezillon @ 2013-12-09 14:05 UTC (permalink / raw)
  To: linux-arm-kernel

On 09/12/2013 14:43, Nicolas Ferre wrote:
> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Acked-by: Boris BREZILLON<b.brezillon@overkiz.com>
> ---
>   arch/arm/boot/dts/at91rm9200ek.dts | 30 +++++++++++++++---------------
>   1 file changed, 15 insertions(+), 15 deletions(-)
>
> diff --git a/arch/arm/boot/dts/at91rm9200ek.dts b/arch/arm/boot/dts/at91rm9200ek.dts
> index 31f5c3293d07..df6b0aa0e4dd 100644
> --- a/arch/arm/boot/dts/at91rm9200ek.dts
> +++ b/arch/arm/boot/dts/at91rm9200ek.dts
> @@ -29,18 +29,9 @@
>   
>   	ahb {
>   		apb {
> -			dbgu: serial at fffff200 {
> -				status = "okay";
> -			};
> -
> -			usart1: serial at fffc4000 {
> -				pinctrl-0 =
> -						<&pinctrl_uart1
> -						 &pinctrl_uart1_rts
> -						 &pinctrl_uart1_cts
> -						 &pinctrl_uart1_dtr_dsr
> -						 &pinctrl_uart1_dcd
> -						 &pinctrl_uart1_ri>;
> +			usb1: gadget at fffb0000 {
> +				atmel,vbus-gpio = <&pioD 4 GPIO_ACTIVE_HIGH>;
> +				atmel,pullup-gpio = <&pioD 5 GPIO_ACTIVE_HIGH>;
>   				status = "okay";
>   			};
>   
> @@ -54,9 +45,14 @@
>   				};
>   			};
>   
> -			usb1: gadget at fffb0000 {
> -				atmel,vbus-gpio = <&pioD 4 GPIO_ACTIVE_HIGH>;
> -				atmel,pullup-gpio = <&pioD 5 GPIO_ACTIVE_HIGH>;
> +			usart1: serial at fffc4000 {
> +				pinctrl-0 =
> +						<&pinctrl_uart1
> +						 &pinctrl_uart1_rts
> +						 &pinctrl_uart1_cts
> +						 &pinctrl_uart1_dtr_dsr
> +						 &pinctrl_uart1_dcd
> +						 &pinctrl_uart1_ri>;
>   				status = "okay";
>   			};
>   
> @@ -69,6 +65,10 @@
>   					reg = <0>;
>   				};
>   			};
> +
> +			dbgu: serial at fffff200 {
> +				status = "okay";
> +			};
>   		};
>   
>   		usb0: ohci at 00300000 {

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

end of thread, other threads:[~2013-12-09 14:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-09 13:43 [PATCH] ARM: at91/at91rm9200ek.dts: rearrange nodes in address ascending order Nicolas Ferre
2013-12-09 14:05 ` boris brezillon

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.