Commit e24bf9c6 authored by Alexandre Belloni's avatar Alexandre Belloni Committed by Nicolas Ferre

ARM: at91/dt: at91sam9rl: fix rtc node

The RTC lives at 0xfffffe00. Also reorder the node properly.
Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@free-electrons.com>
Signed-off-by: default avatarNicolas Ferre <nicolas.ferre@atmel.com>
parent f8073708
...@@ -1065,13 +1065,6 @@ clk32k: slck { ...@@ -1065,13 +1065,6 @@ clk32k: slck {
}; };
}; };
rtc@fffffeb0 {
compatible = "atmel,at91rm9200-rtc";
reg = <0xfffffeb0 0x40>;
interrupts = <1 IRQ_TYPE_LEVEL_HIGH 7>;
status = "disabled";
};
rtc@fffffd20 { rtc@fffffd20 {
compatible = "atmel,at91sam9260-rtt"; compatible = "atmel,at91sam9260-rtt";
reg = <0xfffffd20 0x10>; reg = <0xfffffd20 0x10>;
...@@ -1085,6 +1078,14 @@ gpbr: syscon@fffffd60 { ...@@ -1085,6 +1078,14 @@ gpbr: syscon@fffffd60 {
reg = <0xfffffd60 0x10>; reg = <0xfffffd60 0x10>;
status = "disabled"; status = "disabled";
}; };
rtc@fffffe00 {
compatible = "atmel,at91rm9200-rtc";
reg = <0xfffffe00 0x40>;
interrupts = <1 IRQ_TYPE_LEVEL_HIGH 7>;
status = "disabled";
};
}; };
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment