From: Alexandre Belloni Date: Wed, 3 Jun 2015 12:24:03 +0000 (+0200) Subject: ARM: at91/dt: at91sam9rl: fix rtc node X-Git-Tag: v4.2-rc1~99^2~9^2~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e24bf9c6ca0223752dc3da459c35f0723c4199d9;p=platform%2Fkernel%2Flinux-exynos.git ARM: at91/dt: at91sam9rl: fix rtc node The RTC lives at 0xfffffe00. Also reorder the node properly. Signed-off-by: Alexandre Belloni Signed-off-by: Nicolas Ferre --- diff --git a/arch/arm/boot/dts/at91sam9rl.dtsi b/arch/arm/boot/dts/at91sam9rl.dtsi index ebfd5ce..c9920c6 100644 --- a/arch/arm/boot/dts/at91sam9rl.dtsi +++ b/arch/arm/boot/dts/at91sam9rl.dtsi @@ -1065,13 +1065,6 @@ }; }; - rtc@fffffeb0 { - compatible = "atmel,at91rm9200-rtc"; - reg = <0xfffffeb0 0x40>; - interrupts = <1 IRQ_TYPE_LEVEL_HIGH 7>; - status = "disabled"; - }; - rtc@fffffd20 { compatible = "atmel,at91sam9260-rtt"; reg = <0xfffffd20 0x10>; @@ -1085,6 +1078,14 @@ reg = <0xfffffd60 0x10>; status = "disabled"; }; + + rtc@fffffe00 { + compatible = "atmel,at91rm9200-rtc"; + reg = <0xfffffe00 0x40>; + interrupts = <1 IRQ_TYPE_LEVEL_HIGH 7>; + status = "disabled"; + }; + }; };