提交 a217e8c1 编写于 作者: L Linus Torvalds

Fix fallout from ATI Xpress timer workaround

ACPI earlyquirks needs to honor the proper config variables, and include
the right header file.

(Fixes commit 66759a01)
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 2ade8147
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
#include <linux/pci.h> #include <linux/pci.h>
#include <asm/pci-direct.h> #include <asm/pci-direct.h>
#include <asm/acpi.h> #include <asm/acpi.h>
#include <asm/apic.h>
static int __init check_bridge(int vendor, int device) static int __init check_bridge(int vendor, int device)
{ {
...@@ -15,6 +16,7 @@ static int __init check_bridge(int vendor, int device) ...@@ -15,6 +16,7 @@ static int __init check_bridge(int vendor, int device)
if (vendor == PCI_VENDOR_ID_NVIDIA) { if (vendor == PCI_VENDOR_ID_NVIDIA) {
acpi_skip_timer_override = 1; acpi_skip_timer_override = 1;
} }
#ifdef CONFIG_X86_LOCAL_APIC
/* /*
* ATI IXP chipsets get double timer interrupts. * ATI IXP chipsets get double timer interrupts.
* For now just do this for all ATI chipsets. * For now just do this for all ATI chipsets.
...@@ -22,6 +24,7 @@ static int __init check_bridge(int vendor, int device) ...@@ -22,6 +24,7 @@ static int __init check_bridge(int vendor, int device)
*/ */
if (vendor == PCI_VENDOR_ID_ATI) if (vendor == PCI_VENDOR_ID_ATI)
disable_timer_pin_1 = 1; disable_timer_pin_1 = 1;
#endif
return 0; return 0;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册