hw/arm_mptimer: Reset the qemu_timer at reset
authorPeter Maydell <peter.maydell@linaro.org>
Fri, 20 Apr 2012 15:38:52 +0000 (15:38 +0000)
committerPeter Maydell <peter.maydell@linaro.org>
Fri, 20 Apr 2012 15:38:52 +0000 (15:38 +0000)
On reset of the mpcore timer/watchdog block we need to
delete the qemu_timer in case it was running.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
hw/arm_mptimer.c

index df7fb4c9bde1e537a87f53f8145fee1141d792a7..fe43cbb5f1e8e9894999d8b3c0d6ac64901d18d9 100644 (file)
@@ -228,6 +228,9 @@ static void timerblock_reset(timerblock *tb)
     tb->control = 0;
     tb->status = 0;
     tb->tick = 0;
+    if (tb->timer) {
+        qemu_del_timer(tb->timer);
+    }
 }
 
 static void arm_mptimer_reset(DeviceState *dev)