diff options
| author | Jeff Garzik <jgarzik@redhat.com> | 2007-10-27 14:57:43 -0400 |
|---|---|---|
| committer | Thomas Gleixner <tglx@linutronix.de> | 2007-10-27 14:57:43 -0400 |
| commit | 03d0d20e640a6189ec85fa917259d94013b4d730 (patch) | |
| tree | 7bef586eee1b7fdd3bac7dc25680bc69c49370ef | |
| parent | 74a3d2d331246a12428b027e21d508679187fcf0 (diff) | |
x86: fix compiler warnings in arch/x86/kernel/early-quirks.c
fix this warning:
arch/x86/kernel/early-quirks.c:40: warning: nvidia_hpet_check defined but not used
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
| -rw-r--r-- | arch/x86/kernel/early-quirks.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86/kernel/early-quirks.c b/arch/x86/kernel/early-quirks.c index dc34acbd54aa..639e6320518e 100644 --- a/arch/x86/kernel/early-quirks.c +++ b/arch/x86/kernel/early-quirks.c | |||
| @@ -35,12 +35,14 @@ static void __init via_bugs(void) | |||
| 35 | } | 35 | } |
| 36 | 36 | ||
| 37 | #ifdef CONFIG_ACPI | 37 | #ifdef CONFIG_ACPI |
| 38 | #ifdef CONFIG_X86_IO_APIC | ||
| 38 | 39 | ||
| 39 | static int __init nvidia_hpet_check(struct acpi_table_header *header) | 40 | static int __init nvidia_hpet_check(struct acpi_table_header *header) |
| 40 | { | 41 | { |
| 41 | return 0; | 42 | return 0; |
| 42 | } | 43 | } |
| 43 | #endif | 44 | #endif /* CONFIG_X86_IO_APIC */ |
| 45 | #endif /* CONFIG_ACPI */ | ||
| 44 | 46 | ||
| 45 | static void __init nvidia_bugs(void) | 47 | static void __init nvidia_bugs(void) |
| 46 | { | 48 | { |
