aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/pci/irq.c12
-rw-r--r--drivers/i2c/busses/Kconfig4
-rw-r--r--drivers/i2c/busses/i2c-i801.c10
-rw-r--r--include/linux/pci_ids.h18
4 files changed, 22 insertions, 22 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;
diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig
index 6539ac2907e9..fd455a2fdd12 100644
--- a/drivers/i2c/busses/Kconfig
+++ b/drivers/i2c/busses/Kconfig
@@ -95,9 +95,9 @@ config I2C_I801
95 ESB2 95 ESB2
96 ICH8 96 ICH8
97 ICH9 97 ICH9
98 Tolapai 98 EP80579 (Tolapai)
99 ICH10 99 ICH10
100 3400/5 Series (PCH) 100 5/3400 Series (PCH)
101 Cougar Point (PCH) 101 Cougar Point (PCH)
102 102
103 This driver can also be built as a module. If so, the module 103 This driver can also be built as a module. If so, the module
diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
index c60081169cc3..59d65981eed7 100644
--- a/drivers/i2c/busses/i2c-i801.c
+++ b/drivers/i2c/busses/i2c-i801.c
@@ -38,10 +38,10 @@
38 82801G (ICH7) 0x27da 32 hard yes yes yes 38 82801G (ICH7) 0x27da 32 hard yes yes yes
39 82801H (ICH8) 0x283e 32 hard yes yes yes 39 82801H (ICH8) 0x283e 32 hard yes yes yes
40 82801I (ICH9) 0x2930 32 hard yes yes yes 40 82801I (ICH9) 0x2930 32 hard yes yes yes
41 Tolapai 0x5032 32 hard yes yes yes 41 EP80579 (Tolapai) 0x5032 32 hard yes yes yes
42 ICH10 0x3a30 32 hard yes yes yes 42 ICH10 0x3a30 32 hard yes yes yes
43 ICH10 0x3a60 32 hard yes yes yes 43 ICH10 0x3a60 32 hard yes yes yes
44 3400/5 Series (PCH) 0x3b30 32 hard yes yes yes 44 5/3400 Series (PCH) 0x3b30 32 hard yes yes yes
45 Cougar Point (PCH) 0x1c22 32 hard yes yes yes 45 Cougar Point (PCH) 0x1c22 32 hard yes yes yes
46 46
47 Features supported by this driver: 47 Features supported by this driver:
@@ -587,11 +587,11 @@ static const struct pci_device_id i801_ids[] = {
587 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB2_17) }, 587 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB2_17) },
588 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH8_5) }, 588 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH8_5) },
589 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH9_6) }, 589 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH9_6) },
590 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_TOLAPAI_1) }, 590 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_EP80579_1) },
591 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_4) }, 591 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_4) },
592 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_5) }, 592 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_5) },
593 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PCH_SMBUS) }, 593 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS) },
594 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_CPT_SMBUS) }, 594 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS) },
595 { 0, } 595 { 0, }
596}; 596};
597 597
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h
index ea5a3d19aaba..bb6daa5f8240 100644
--- a/include/linux/pci_ids.h
+++ b/include/linux/pci_ids.h
@@ -2435,10 +2435,10 @@
2435#define PCI_DEVICE_ID_INTEL_82840_HB 0x1a21 2435#define PCI_DEVICE_ID_INTEL_82840_HB 0x1a21
2436#define PCI_DEVICE_ID_INTEL_82845_HB 0x1a30 2436#define PCI_DEVICE_ID_INTEL_82845_HB 0x1a30
2437#define PCI_DEVICE_ID_INTEL_IOAT 0x1a38 2437#define PCI_DEVICE_ID_INTEL_IOAT 0x1a38
2438#define PCI_DEVICE_ID_INTEL_CPT_SMBUS 0x1c22 2438#define PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS 0x1c22
2439#define PCI_DEVICE_ID_INTEL_CPT_LPC_MIN 0x1c41 2439#define PCI_DEVICE_ID_INTEL_COUGARPOINT_LPC_MIN 0x1c41
2440#define PCI_DEVICE_ID_INTEL_CPT_LPC_MAX 0x1c5f 2440#define PCI_DEVICE_ID_INTEL_COUGARPOINT_LPC_MAX 0x1c5f
2441#define PCI_DEVICE_ID_INTEL_PBG_LPC 0x1d40 2441#define PCI_DEVICE_ID_INTEL_PATSBURG_LPC 0x1d40
2442#define PCI_DEVICE_ID_INTEL_82801AA_0 0x2410 2442#define PCI_DEVICE_ID_INTEL_82801AA_0 0x2410
2443#define PCI_DEVICE_ID_INTEL_82801AA_1 0x2411 2443#define PCI_DEVICE_ID_INTEL_82801AA_1 0x2411
2444#define PCI_DEVICE_ID_INTEL_82801AA_3 0x2413 2444#define PCI_DEVICE_ID_INTEL_82801AA_3 0x2413
@@ -2644,9 +2644,9 @@
2644#define PCI_DEVICE_ID_INTEL_ICH10_3 0x3a1a 2644#define PCI_DEVICE_ID_INTEL_ICH10_3 0x3a1a
2645#define PCI_DEVICE_ID_INTEL_ICH10_4 0x3a30 2645#define PCI_DEVICE_ID_INTEL_ICH10_4 0x3a30
2646#define PCI_DEVICE_ID_INTEL_ICH10_5 0x3a60 2646#define PCI_DEVICE_ID_INTEL_ICH10_5 0x3a60
2647#define PCI_DEVICE_ID_INTEL_PCH_LPC_MIN 0x3b00 2647#define PCI_DEVICE_ID_INTEL_5_3400_SERIES_LPC_MIN 0x3b00
2648#define PCI_DEVICE_ID_INTEL_PCH_LPC_MAX 0x3b1f 2648#define PCI_DEVICE_ID_INTEL_5_3400_SERIES_LPC_MAX 0x3b1f
2649#define PCI_DEVICE_ID_INTEL_PCH_SMBUS 0x3b30 2649#define PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS 0x3b30
2650#define PCI_DEVICE_ID_INTEL_IOAT_SNB 0x402f 2650#define PCI_DEVICE_ID_INTEL_IOAT_SNB 0x402f
2651#define PCI_DEVICE_ID_INTEL_5100_16 0x65f0 2651#define PCI_DEVICE_ID_INTEL_5100_16 0x65f0
2652#define PCI_DEVICE_ID_INTEL_5100_21 0x65f5 2652#define PCI_DEVICE_ID_INTEL_5100_21 0x65f5
@@ -2655,8 +2655,8 @@
2655#define PCI_DEVICE_ID_INTEL_5400_FBD0 0x4035 2655#define PCI_DEVICE_ID_INTEL_5400_FBD0 0x4035
2656#define PCI_DEVICE_ID_INTEL_5400_FBD1 0x4036 2656#define PCI_DEVICE_ID_INTEL_5400_FBD1 0x4036
2657#define PCI_DEVICE_ID_INTEL_IOAT_SCNB 0x65ff 2657#define PCI_DEVICE_ID_INTEL_IOAT_SCNB 0x65ff
2658#define PCI_DEVICE_ID_INTEL_TOLAPAI_0 0x5031 2658#define PCI_DEVICE_ID_INTEL_EP80579_0 0x5031
2659#define PCI_DEVICE_ID_INTEL_TOLAPAI_1 0x5032 2659#define PCI_DEVICE_ID_INTEL_EP80579_1 0x5032
2660#define PCI_DEVICE_ID_INTEL_82371SB_0 0x7000 2660#define PCI_DEVICE_ID_INTEL_82371SB_0 0x7000
2661#define PCI_DEVICE_ID_INTEL_82371SB_1 0x7010 2661#define PCI_DEVICE_ID_INTEL_82371SB_1 0x7010
2662#define PCI_DEVICE_ID_INTEL_82371SB_2 0x7020 2662#define PCI_DEVICE_ID_INTEL_82371SB_2 0x7020