Messages in this thread Patch in this message |  | | | Subject | [PATCH] x86: fix compile warning for !(ACPI && X86_IO_APIC) builds | | From | Simon Holm Thøgersen <> | | Date | Tue, 14 Oct 2008 01:00:50 +0200 |
| |
This fixes the following compile warning for !(ACPI && X86_IO_APIC) builds:
arch/x86/kernel/early-quirks.c:99: warning: 'ati_ixp4x0_rev' defined but not used
that was introduced by 33fb0e4 (x86: SB450: skip IRQ0 override if it is not routed to INT2 of IOAPIC).
Signed-off-by: Simon Holm Thøgersen <odie@cs.aau.dk> --- arch/x86/kernel/early-quirks.c | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/arch/x86/kernel/early-quirks.c b/arch/x86/kernel/early-quirks.c index 733c4f8..f60afb6 100644 --- a/arch/x86/kernel/early-quirks.c +++ b/arch/x86/kernel/early-quirks.c @@ -95,6 +95,7 @@ static void __init nvidia_bugs(int num, int slot, int func) } +#if defined(CONFIG_ACPI) && defined (CONFIG_X86_IO_APIC) static u32 ati_ixp4x0_rev(int num, int slot, int func) { u32 d; @@ -115,7 +116,6 @@ static u32 ati_ixp4x0_rev(int num, int slot, int func) static void __init ati_bugs(int num, int slot, int func) { -#if defined(CONFIG_ACPI) && defined (CONFIG_X86_IO_APIC) u32 d; u8 b; @@ -138,8 +138,12 @@ static void __init ati_bugs(int num, int slot, int func) printk(KERN_INFO "If you got timer trouble " "try acpi_use_timer_override\n"); } -#endif } +#else +static void __init ati_bugs(int num, int slot, int func) +{ +} +#endif #ifdef CONFIG_DMAR static void __init intel_g33_dmar(int num, int slot, int func) -- 1.5.6.2.255.gbed62 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |