Avoid a build warning.

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4303 c046a42c-6fe2-441c-8c8c-71466251a162
diff --git a/hw/etraxfs_timer.c b/hw/etraxfs_timer.c
index 8ec147c..08a6f18 100644
--- a/hw/etraxfs_timer.c
+++ b/hw/etraxfs_timer.c
@@ -180,8 +180,9 @@
 		qemu_irq_lower(t->irq[0]);
 }
 
-static void timer_hit(struct fs_timer_t *t)
+static void timer_hit(void *opaque)
 {
+	struct fs_timer_t *t = opaque;
 	t->r_intr |= 1;
 	timer_update_irq(t);
 }