diff options
author | Paolo Bonzini | 2015-02-16 14:13:11 +0100 |
---|---|---|
committer | Paolo Bonzini | 2015-09-09 15:34:53 +0200 |
commit | 5039d6e23586fe6bbedc5e4fe302b48a66890ade (patch) | |
tree | 9b9b37d9e263dbf66be60f968b5b3e2c9b131448 /hw/isa/i82378.c | |
parent | i8257: rewrite DMA_schedule to avoid hooking into the CPU loop (diff) | |
download | qemu-5039d6e23586fe6bbedc5e4fe302b48a66890ade.tar.gz qemu-5039d6e23586fe6bbedc5e4fe302b48a66890ade.tar.xz qemu-5039d6e23586fe6bbedc5e4fe302b48a66890ade.zip |
i8257: remove cpu_request_exit irq
This is unused. cpu_exit now is almost exclusively an internal function
to the CPU execution loop. In a few patches, we'll change the remaining
occurrences to qemu_cpu_kick, making it truly internal.
Reviewed-by: Richard henderson <rth@twiddle.net>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/isa/i82378.c')
-rw-r--r-- | hw/isa/i82378.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/isa/i82378.c b/hw/isa/i82378.c index fcf97d86ac..d4c830684b 100644 --- a/hw/isa/i82378.c +++ b/hw/isa/i82378.c @@ -100,7 +100,6 @@ static void i82378_realize(PCIDevice *pci, Error **errp) /* 2 82C37 (dma) */ isa = isa_create_simple(isabus, "i82374"); - qdev_connect_gpio_out(DEVICE(isa), 0, s->out[1]); /* timer */ isa_create_simple(isabus, "mc146818rtc"); @@ -111,7 +110,7 @@ static void i82378_init(Object *obj) DeviceState *dev = DEVICE(obj); I82378State *s = I82378(obj); - qdev_init_gpio_out(dev, s->out, 2); + qdev_init_gpio_out(dev, s->out, 1); qdev_init_gpio_in(dev, i82378_request_pic_irq, 16); } |