X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fdevices%2Ftimer.c;fp=palacios%2Fsrc%2Fdevices%2Ftimer.c;h=5ed434b91f4049d9aa3ebc6a609c5f4f0ae0583b;hb=3cd1d3771e3f8e30b09f6c4995851979aaafc5ff;hp=87dcdfa9dbd89f5e2b86750b48c57388631d7a2d;hpb=1c46db5ec8d086d76f7120a638199564947694d3;p=palacios.git diff --git a/palacios/src/devices/timer.c b/palacios/src/devices/timer.c index 87dcdfa..5ed434b 100644 --- a/palacios/src/devices/timer.c +++ b/palacios/src/devices/timer.c @@ -28,20 +28,21 @@ struct timer_state { }; - -int irq_handler(uint_t irq, struct vm_device * dev) { +/* +static int irq_handler(uint_t irq, struct vm_device * dev) { PrintDebug("Timer interrupt\n"); return 0; } +*/ -int timer_init(struct vm_device * dev) { +static int timer_init(struct vm_device * dev) { //dev_hook_irq(dev, TIMER_IRQ, &irq_handler); return 0; } -int timer_deinit(struct vm_device * dev) { +static int timer_deinit(struct vm_device * dev) { return 0; } @@ -57,12 +58,12 @@ static struct vm_device_ops dev_ops = { }; -struct vm_device * create_timer() { +struct vm_device * v3_create_timer() { struct timer_state * timer = NULL; timer = (struct timer_state *)V3_Malloc( sizeof(struct timer_state)); V3_ASSERT(timer != NULL); - struct vm_device * dev = create_device("Timer", &dev_ops, timer); + struct vm_device * dev = v3_create_device("Timer", &dev_ops, timer); return dev;