diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-02-16 14:13:11 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-09-09 15:34:53 +0200 |
commit | 5039d6e23586fe6bbedc5e4fe302b48a66890ade (patch) | |
tree | 9b9b37d9e263dbf66be60f968b5b3e2c9b131448 /hw/sparc | |
parent | 19d2b5e6ff7202c2bf45c547efa85ae6c2d76bbd (diff) | |
download | 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/sparc')
-rw-r--r-- | hw/sparc/sun4m.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/sparc/sun4m.c b/hw/sparc/sun4m.c index ebaae9df27..b5db8b7a00 100644 --- a/hw/sparc/sun4m.c +++ b/hw/sparc/sun4m.c @@ -111,7 +111,7 @@ void DMA_hold_DREQ (int nchan) {} void DMA_release_DREQ (int nchan) {} void DMA_schedule(void) {} -void DMA_init(int high_page_enable, qemu_irq *cpu_request_exit) +void DMA_init(int high_page_enable) { } |