Changeset 3304 for lm-sensors/trunk/kernel/busses/i2c-i801.c
- Timestamp:
- 05/23/06 13:23:53 (7 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
r3290 r3304 33 33 ICH7 27DA ("") 34 34 ESB2 269B ("") 35 ICH8 283E ("") 36 35 37 This driver supports several versions of Intel's I/O Controller Hubs (ICH). 36 38 For SMBus support, they are similar to the PIIX4 and are part … … 90 92 #ifndef PCI_DEVICE_ID_INTEL_ICH7_17 91 93 #define PCI_DEVICE_ID_INTEL_ICH7_17 0x27da 94 #endif 95 96 /* ICH8 is undefined */ 97 #ifndef PCI_DEVICE_ID_INTEL_ICH8_5 98 #define PCI_DEVICE_ID_INTEL_ICH8_5 0x283e 92 99 #endif 93 100 … … 170 177 dev->device == PCI_DEVICE_ID_INTEL_ESB2_17 || 171 178 dev->device == PCI_DEVICE_ID_INTEL_ICH6_16 || 172 dev->device == PCI_DEVICE_ID_INTEL_ICH7_17) 179 dev->device == PCI_DEVICE_ID_INTEL_ICH7_17 || 180 dev->device == PCI_DEVICE_ID_INTEL_ICH8_5) 173 181 isich4 = 1; 174 182 else … … 666 674 .subdevice = PCI_ANY_ID, 667 675 }, 676 { 677 .vendor = PCI_VENDOR_ID_INTEL, 678 .device = PCI_DEVICE_ID_INTEL_ICH8_5, 679 .subvendor = PCI_ANY_ID, 680 .subdevice = PCI_ANY_ID, 681 }, 668 682 { 0, } 669 683 };
