summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleg Ogurtsov2012-07-11 02:03:28 +0200
committerPeter Maydell2012-07-20 15:18:24 +0200
commit4688870d87883784bd151e0b7d024e5027c39f01 (patch)
tree0cb4d5b29ca3430b72632c856379a6d1ee48e8c3
parenthw/exynos4210_rtc.c: Fix calculating for value of year (diff)
downloadqemu-4688870d87883784bd151e0b7d024e5027c39f01.tar.gz
qemu-4688870d87883784bd151e0b7d024e5027c39f01.tar.xz
qemu-4688870d87883784bd151e0b7d024e5027c39f01.zip
hw/exynos4210_rtc.c: remove unnecessary code
Signed-off-by: Oleg Ogurtsov <o.ogurtsov@samsung.com> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r--hw/exynos4210_rtc.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/hw/exynos4210_rtc.c b/hw/exynos4210_rtc.c
index b42586eb21..42a4ddc327 100644
--- a/hw/exynos4210_rtc.c
+++ b/hw/exynos4210_rtc.c
@@ -510,10 +510,7 @@ static void exynos4210_rtc_reset(DeviceState *d)
{
Exynos4210RTCState *s = (Exynos4210RTCState *)d;
- struct tm tm;
-
- qemu_get_timedate(&tm, 0);
- s->current_tm = tm;
+ qemu_get_timedate(&s->current_tm, 0);
DPRINTF("Get time from host: %d-%d-%d %2d:%02d:%02d\n",
s->current_tm.tm_year, s->current_tm.tm_mon, s->current_tm.tm_mday,