From: Jeremy Fitzhardinge Date: Mon, 8 Jun 2009 10:13:04 +0000 (-0700) Subject: x86/ioapic.c: remove redundant declaration of irq_pin_list X-Git-Tag: v2.6.32-rc1~715^2~19 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=83c21bedf63ce92a2dd82ae2c7a96179b0aa4372;p=thirdparty%2Fkernel%2Flinux.git x86/ioapic.c: remove redundant declaration of irq_pin_list The structure is defined immediately below, so there's no need to forward declare it. Signed-off-by: Jeremy Fitzhardinge --- diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c index 1a34144425837..ec52e0c045c4d 100644 --- a/arch/x86/kernel/apic/io_apic.c +++ b/arch/x86/kernel/apic/io_apic.c @@ -116,8 +116,6 @@ static int __init parse_noapic(char *str) } early_param("noapic", parse_noapic); -struct irq_pin_list; - /* * This is performance-critical, we want to do it O(1) *