diff mbox

[4/4] timer/m48t59.c: Change qemu_system_reset_request to watchdog_perform_action where appropriate

Message ID 1457971072-26243-1-git-send-email-aesmade@gmail.com
State New
Headers show

Commit Message

Nikos Filippakis March 14, 2016, 3:57 p.m. UTC
Instead of using qemu_system_reset_request() to reset when a watchdog triggers,
let watchdog_perform_action() decide what to do, as stated in the BiteSizedTasks
wiki page.

Signed-off-by: Nikos Filippakis <aesmade@gmail.com>
---
 hw/timer/m48t59.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox

Patch

diff --git a/hw/timer/m48t59.c b/hw/timer/m48t59.c
index bbcfeb2..57811e7 100644
--- a/hw/timer/m48t59.c
+++ b/hw/timer/m48t59.c
@@ -30,6 +30,7 @@ 
 #include "hw/sysbus.h"
 #include "hw/isa/isa.h"
 #include "exec/address-spaces.h"
+#include "sysemu/watchdog.h"
 
 //#define DEBUG_NVRAM
 
@@ -223,7 +224,7 @@  static void watchdog_cb (void *opaque)
 	NVRAM->buffer[0x1FF7] = 0x00;
 	NVRAM->buffer[0x1FFC] &= ~0x40;
         /* May it be a hw CPU Reset instead ? */
-        qemu_system_reset_request();
+        watchdog_perform_action();
     } else {
 	qemu_set_irq(NVRAM->IRQ, 1);
 	qemu_set_irq(NVRAM->IRQ, 0);