Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e20fd336 authored by Linus Walleij's avatar Linus Walleij Committed by Andy Gross
Browse files

ARM: dts: fix the MSM8660 RTC base address



The RTC was defined on 0x11d but on the MSM8660/APQ8060 it is
actually on 0x1e8. We were saved by the fact that the driver does
not use the reg parameter: instead it uses the compatible string
to figure out where the RTC is.

Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Reviewed-by: default avatarStephen Boyd <sboyd@codeaurora.org>
Signed-off-by: default avatarAndy Gross <andy.gross@linaro.org>
parent c51cb1a1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -211,11 +211,11 @@
					row-hold = <91500>;
				};

				rtc@11d {
				rtc@1e8 {
					compatible = "qcom,pm8058-rtc";
					reg = <0x1e8>;
					interrupt-parent = <&pmicintc>;
					interrupts = <39 1>;
					reg = <0x11d>;
					allow-set-time;
				};