OSDN Git Service

xilinx_timer: Fix a compile error if debug enabled
authorChris Wulff <crwulff@gmail.com>
Mon, 10 Sep 2012 00:20:07 +0000 (20:20 -0400)
committerEdgar E. Iglesias <edgar.iglesias@gmail.com>
Wed, 19 Sep 2012 16:48:09 +0000 (18:48 +0200)
There was a missing include of qemu-log and a variable name in a printf was out
of date.

Signed-off-by: Chris Wulff <crwulff@gmail.com>
Signed-off-by: Peter A. G. Crosthwaite <peter.crosthwaite@petalogix.com>
hw/xilinx_timer.c

index 9eb5ef7..2e48ca2 100644 (file)
@@ -24,6 +24,7 @@
 
 #include "sysbus.h"
 #include "ptimer.h"
+#include "qemu-log.h"
 
 #define D(x)
 
@@ -189,7 +190,7 @@ static void timer_hit(void *opaque)
 {
     struct xlx_timer *xt = opaque;
     struct timerblock *t = xt->parent;
-    D(fprintf(stderr, "%s %d\n", __func__, timer));
+    D(fprintf(stderr, "%s %d\n", __func__, xt->nr));
     xt->regs[R_TCSR] |= TCSR_TINT;
 
     if (xt->regs[R_TCSR] & TCSR_ARHT)