summaryrefslogtreecommitdiffstats
path: root/hw/exynos4210_rtc.c
diff options
context:
space:
mode:
authorOleg Ogurtsov <o.ogurtsov@samsung.com>2012-07-11 00:03:27 +0000
committerPeter Maydell <peter.maydell@linaro.org>2012-07-20 14:16:14 +0100
commit64de1ecfe7b3e88cb9f04c993e14ab85c2b5c532 (patch)
tree71eaa0a3e53862aa5d6ba39d3077947e38010be0 /hw/exynos4210_rtc.c
parent25d716998217e1fb37e16774060459c4dfff405e (diff)
downloadhqemu-64de1ecfe7b3e88cb9f04c993e14ab85c2b5c532.zip
hqemu-64de1ecfe7b3e88cb9f04c993e14ab85c2b5c532.tar.gz
hw/exynos4210_rtc.c: Fix calculating for value of year
Signed-off-by: Oleg Ogurtsov <o.ogurtsov@samsung.com> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/exynos4210_rtc.c')
-rw-r--r--hw/exynos4210_rtc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/exynos4210_rtc.c b/hw/exynos4210_rtc.c
index f781020..b42586e 100644
--- a/hw/exynos4210_rtc.c
+++ b/hw/exynos4210_rtc.c
@@ -142,7 +142,7 @@ static const VMStateDescription vmstate_exynos4210_rtc_state = {
};
#define BCD3DIGITS(x) \
- ((uint32_t)to_bcd((uint8_t)x) + \
+ ((uint32_t)to_bcd((uint8_t)(x % 100)) + \
((uint32_t)to_bcd((uint8_t)((x % 1000) / 100)) << 8))
static void check_alarm_raise(Exynos4210RTCState *s)
OpenPOWER on IntegriCloud