Changeset 2992
- Timestamp:
- 05/09/05 22:54:38 (8 years ago)
- Files:
-
- 1 modified
-
lm-sensors/trunk/kernel/busses/i2c-i801.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/kernel/busses/i2c-i801.c
r2897 r2992 32 32 ICH6 266A ("") 33 33 ICH7 27DA ("") 34 ESB2 269B ("") 34 35 This driver supports several versions of Intel's I/O Controller Hubs (ICH). 35 36 For SMBus support, they are similar to the PIIX4 and are part … … 74 75 #ifndef PCI_DEVICE_ID_INTEL_ESB_4 75 76 #define PCI_DEVICE_ID_INTEL_ESB_4 0x25a4 77 #endif 78 79 /* ESB2 - Enterprise Southbridge is undefined */ 80 #ifndef PCI_DEVICE_ID_INTEL_ESB2_17 81 #define PCI_DEVICE_ID_INTEL_ESB2_17 0x269b 76 82 #endif 77 83 … … 161 167 dev->device == PCI_DEVICE_ID_INTEL_82801EB_3 || 162 168 dev->device == PCI_DEVICE_ID_INTEL_ESB_4 || 169 dev->device == PCI_DEVICE_ID_INTEL_ESB2_17 || 163 170 dev->device == PCI_DEVICE_ID_INTEL_ICH6_16 || 164 171 dev->device == PCI_DEVICE_ID_INTEL_ICH7_17) … … 659 666 { 660 667 .vendor = PCI_VENDOR_ID_INTEL, 668 .device = PCI_DEVICE_ID_INTEL_ESB2_17, 669 .subvendor = PCI_ANY_ID, 670 .subdevice = PCI_ANY_ID, 671 }, 672 { 673 .vendor = PCI_VENDOR_ID_INTEL, 661 674 .device = PCI_DEVICE_ID_INTEL_ICH6_16, 662 675 .subvendor = PCI_ANY_ID,
