From 96025496cf7aa6b5c593fe1dc5640e1e737ab45f Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Tue, 11 May 2004 20:06:55 +0000 Subject: [PATCH] - Remove a spurious blank line. - Add a missing static keyword. --- sys/i386/i386/io_apic.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys/i386/i386/io_apic.c b/sys/i386/i386/io_apic.c index daa33728dc4..b148ac6dc48 100644 --- a/sys/i386/i386/io_apic.c +++ b/sys/i386/i386/io_apic.c @@ -112,7 +112,6 @@ struct ioapic { struct ioapic_intsrc io_pins[0]; }; - static u_int ioapic_read(volatile ioapic_t *apic, int reg); static void ioapic_write(volatile ioapic_t *apic, int reg, u_int val); static void ioapic_enable_source(struct intsrc *isrc); @@ -726,7 +725,7 @@ SYSINIT(ioapic_destinations, SI_SUB_SMP, SI_ORDER_SECOND, * that IRQ instead. */ -void +static void ioapic_setup_mixed_mode(struct ioapic_intsrc *intpin) { struct ioapic_intsrc *extint;