diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2016-06-17 16:28:10 -0400 |
---|---|---|
committer | Andy Gross <andy.gross@linaro.org> | 2016-06-27 18:36:57 -0400 |
commit | e20fd3364c0222a582cb45e061c677e232116236 (patch) | |
tree | f4651b639c83e0150c2785ca5f0e3ca66c8d6b60 | |
parent | c51cb1a15676daed1d1a7fc8a0f2d1e3ae125361 (diff) |
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: Linus Walleij <linus.walleij@linaro.org>
Reviewed-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Andy Gross <andy.gross@linaro.org>
-rw-r--r-- | arch/arm/boot/dts/qcom-msm8660.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/qcom-msm8660.dtsi b/arch/arm/boot/dts/qcom-msm8660.dtsi index 8ee3045f4066..b7d7f0c27ba1 100644 --- a/arch/arm/boot/dts/qcom-msm8660.dtsi +++ b/arch/arm/boot/dts/qcom-msm8660.dtsi | |||
@@ -211,11 +211,11 @@ | |||
211 | row-hold = <91500>; | 211 | row-hold = <91500>; |
212 | }; | 212 | }; |
213 | 213 | ||
214 | rtc@11d { | 214 | rtc@1e8 { |
215 | compatible = "qcom,pm8058-rtc"; | 215 | compatible = "qcom,pm8058-rtc"; |
216 | reg = <0x1e8>; | ||
216 | interrupt-parent = <&pmicintc>; | 217 | interrupt-parent = <&pmicintc>; |
217 | interrupts = <39 1>; | 218 | interrupts = <39 1>; |
218 | reg = <0x11d>; | ||
219 | allow-set-time; | 219 | allow-set-time; |
220 | }; | 220 | }; |
221 | 221 | ||