diff options
author | Seth Heasley <seth.heasley@intel.com> | 2010-10-04 16:27:14 -0400 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2010-10-17 23:03:04 -0400 |
commit | cb04e95bdd0bfd618ab731c84a3ab56b56974df8 (patch) | |
tree | b2af7c9239b2ce4861b5590df684256d71a54d49 /arch/x86/pci/irq.c | |
parent | 350a55e9ff6005032407d3234af800f413b03af5 (diff) |
PCI: update Intel chipset names and defines
This patch updates the defines for Intel devices in
include/linux/pci_ids.h, referenced in arch/x86/pci/irq.c and
drivers/i2c/busses/i2c-i801.c, reflecting approved legal branding, and
using fuller code-names for products under development.
Acked-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Seth Heasley <seth.heasley@intel.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'arch/x86/pci/irq.c')
-rw-r--r-- | arch/x86/pci/irq.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/x86/pci/irq.c b/arch/x86/pci/irq.c index ee7fc8fc8a83..9f9bfb705cf9 100644 --- a/arch/x86/pci/irq.c +++ b/arch/x86/pci/irq.c | |||
@@ -584,28 +584,28 @@ static __init int intel_router_probe(struct irq_router *r, struct pci_dev *route | |||
584 | case PCI_DEVICE_ID_INTEL_ICH9_3: | 584 | case PCI_DEVICE_ID_INTEL_ICH9_3: |
585 | case PCI_DEVICE_ID_INTEL_ICH9_4: | 585 | case PCI_DEVICE_ID_INTEL_ICH9_4: |
586 | case PCI_DEVICE_ID_INTEL_ICH9_5: | 586 | case PCI_DEVICE_ID_INTEL_ICH9_5: |
587 | case PCI_DEVICE_ID_INTEL_TOLAPAI_0: | 587 | case PCI_DEVICE_ID_INTEL_EP80579_0: |
588 | case PCI_DEVICE_ID_INTEL_ICH10_0: | 588 | case PCI_DEVICE_ID_INTEL_ICH10_0: |
589 | case PCI_DEVICE_ID_INTEL_ICH10_1: | 589 | case PCI_DEVICE_ID_INTEL_ICH10_1: |
590 | case PCI_DEVICE_ID_INTEL_ICH10_2: | 590 | case PCI_DEVICE_ID_INTEL_ICH10_2: |
591 | case PCI_DEVICE_ID_INTEL_ICH10_3: | 591 | case PCI_DEVICE_ID_INTEL_ICH10_3: |
592 | case PCI_DEVICE_ID_INTEL_PBG_LPC: | 592 | case PCI_DEVICE_ID_INTEL_PATSBURG_LPC: |
593 | r->name = "PIIX/ICH"; | 593 | r->name = "PIIX/ICH"; |
594 | r->get = pirq_piix_get; | 594 | r->get = pirq_piix_get; |
595 | r->set = pirq_piix_set; | 595 | r->set = pirq_piix_set; |
596 | return 1; | 596 | return 1; |
597 | } | 597 | } |
598 | 598 | ||
599 | if ((device >= PCI_DEVICE_ID_INTEL_PCH_LPC_MIN) && | 599 | if ((device >= PCI_DEVICE_ID_INTEL_5_3400_SERIES_LPC_MIN) && |
600 | (device <= PCI_DEVICE_ID_INTEL_PCH_LPC_MAX)) { | 600 | (device <= PCI_DEVICE_ID_INTEL_5_3400_SERIES_LPC_MAX)) { |
601 | r->name = "PIIX/ICH"; | 601 | r->name = "PIIX/ICH"; |
602 | r->get = pirq_piix_get; | 602 | r->get = pirq_piix_get; |
603 | r->set = pirq_piix_set; | 603 | r->set = pirq_piix_set; |
604 | return 1; | 604 | return 1; |
605 | } | 605 | } |
606 | 606 | ||
607 | if ((device >= PCI_DEVICE_ID_INTEL_CPT_LPC_MIN) && | 607 | if ((device >= PCI_DEVICE_ID_INTEL_COUGARPOINT_LPC_MIN) && |
608 | (device <= PCI_DEVICE_ID_INTEL_CPT_LPC_MAX)) { | 608 | (device <= PCI_DEVICE_ID_INTEL_COUGARPOINT_LPC_MAX)) { |
609 | r->name = "PIIX/ICH"; | 609 | r->name = "PIIX/ICH"; |
610 | r->get = pirq_piix_get; | 610 | r->get = pirq_piix_get; |
611 | r->set = pirq_piix_set; | 611 | r->set = pirq_piix_set; |