diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-21 19:21:08 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-21 19:21:08 -0500 |
commit | b8967d8883aadf36351b568c1f1301ad3f46fc3d (patch) | |
tree | 716bb8c4516d10e27a5ba5e939ae4aff0370c892 /arch | |
parent | c6b083466818e674d479cfeb847061a57658bcba (diff) | |
parent | 79df4c60c5b24ebc90f591d5991b22782813fcfe (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/pci-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/pci-2.6:
PCI: Fix wrong reference counter check for proc_dir_entry
PCI: fix up setup-bus.c #ifdef
PCI: don't load acpi_php when acpi is disabled
PCI: quirks: set 'En' bit of MSI Mapping for devices onHT-based nvidia platform
PCI: kernel-doc: fix pci-acpi warning
PCI: irq: patch for Intel ICH10 DeviceID's
PCI: pci_ids: patch for Intel ICH10 DeviceID's
PCI: AMD SATA IDE mode quirk
PCI: drivers/pcmcia/i82092.c: fix up after pci_bus_region changes
PCI: hotplug: acpiphp_ibm: Remove get device information
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/acpi/boot.c | 3 | ||||
-rw-r--r-- | arch/x86/pci/irq.c | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c index 680b7300a489..2cdc9de9371d 100644 --- a/arch/x86/kernel/acpi/boot.c +++ b/arch/x86/kernel/acpi/boot.c | |||
@@ -72,7 +72,8 @@ static inline int acpi_madt_oem_check(char *oem_id, char *oem_table_id) { return | |||
72 | #define PREFIX "ACPI: " | 72 | #define PREFIX "ACPI: " |
73 | 73 | ||
74 | int acpi_noirq; /* skip ACPI IRQ initialization */ | 74 | int acpi_noirq; /* skip ACPI IRQ initialization */ |
75 | int acpi_pci_disabled __initdata; /* skip ACPI PCI scan and IRQ initialization */ | 75 | int acpi_pci_disabled; /* skip ACPI PCI scan and IRQ initialization */ |
76 | EXPORT_SYMBOL(acpi_pci_disabled); | ||
76 | int acpi_ht __initdata = 1; /* enable HT */ | 77 | int acpi_ht __initdata = 1; /* enable HT */ |
77 | 78 | ||
78 | int acpi_lapic; | 79 | int acpi_lapic; |
diff --git a/arch/x86/pci/irq.c b/arch/x86/pci/irq.c index ed07ce6c171b..a8715861877e 100644 --- a/arch/x86/pci/irq.c +++ b/arch/x86/pci/irq.c | |||
@@ -583,6 +583,10 @@ static __init int intel_router_probe(struct irq_router *r, struct pci_dev *route | |||
583 | case PCI_DEVICE_ID_INTEL_ICH9_4: | 583 | case PCI_DEVICE_ID_INTEL_ICH9_4: |
584 | case PCI_DEVICE_ID_INTEL_ICH9_5: | 584 | case PCI_DEVICE_ID_INTEL_ICH9_5: |
585 | case PCI_DEVICE_ID_INTEL_TOLAPAI_0: | 585 | case PCI_DEVICE_ID_INTEL_TOLAPAI_0: |
586 | case PCI_DEVICE_ID_INTEL_ICH10_0: | ||
587 | case PCI_DEVICE_ID_INTEL_ICH10_1: | ||
588 | case PCI_DEVICE_ID_INTEL_ICH10_2: | ||
589 | case PCI_DEVICE_ID_INTEL_ICH10_3: | ||
586 | r->name = "PIIX/ICH"; | 590 | r->name = "PIIX/ICH"; |
587 | r->get = pirq_piix_get; | 591 | r->get = pirq_piix_get; |
588 | r->set = pirq_piix_set; | 592 | r->set = pirq_piix_set; |