From patchwork Sat Jun 12 21:14:47 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [v2,1/7] ioapic: unexport ioapic_set_irq Date: Sat, 12 Jun 2010 11:14:47 -0000 From: Blue Swirl X-Patchwork-Id: 55405 Message-Id: To: qemu-devel There's no need to use ioapic_set_irq() outside of ioapic.c, so make it static. Signed-off-by: Blue Swirl --- hw/apic.h | 1 - hw/ioapic.c | 2 +- 2 files changed, 1 insertions(+), 2 deletions(-) diff --git a/hw/apic.h b/hw/apic.h index 132fcab..e1954f4 100644 --- a/hw/apic.h +++ b/hw/apic.h @@ -11,7 +11,6 @@ int apic_accept_pic_intr(CPUState *env); void apic_deliver_pic_intr(CPUState *env, int level); int apic_get_interrupt(CPUState *env); qemu_irq *ioapic_init(void); -void ioapic_set_irq(void *opaque, int vector, int level); void apic_reset_irq_delivered(void); int apic_get_irq_delivered(void); diff --git a/hw/ioapic.c b/hw/ioapic.c index 335da6e..e3f8a46 100644 --- a/hw/ioapic.c +++ b/hw/ioapic.c @@ -94,7 +94,7 @@ static void ioapic_service(IOAPICState *s) } } -void ioapic_set_irq(void *opaque, int vector, int level) +static void ioapic_set_irq(void *opaque, int vector, int level) { IOAPICState *s = opaque;