diff options
Diffstat (limited to 'hw/pl031.c')
-rw-r--r-- | hw/pl031.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/pl031.c b/hw/pl031.c index 671491fba2..19577dde35 100644 --- a/hw/pl031.c +++ b/hw/pl031.c @@ -183,7 +183,7 @@ static CPUReadMemoryFunc * const pl031_readfn[] = { pl031_read }; -static void pl031_init(SysBusDevice *dev) +static int pl031_init(SysBusDevice *dev) { int iomemtype; pl031_state *s = FROM_SYSBUS(pl031_state, dev); @@ -202,6 +202,7 @@ static void pl031_init(SysBusDevice *dev) s->tick_offset = mktimegm(&tm); s->timer = qemu_new_timer(vm_clock, pl031_interrupt, s); + return 0; } static void pl031_register_devices(void) |