Changeset 1197 for lm-sensors/trunk/kernel/busses/i2c-i801.c
- Timestamp:
- 10/07/01 04:18:25 (12 years ago)
- Files:
-
- 1 modified
-
lm-sensors/trunk/kernel/busses/i2c-i801.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/kernel/busses/i2c-i801.c
r1142 r1197 22 22 23 23 /* 24 This driver supports the Intel 82801AA, 82801AB, and 82801BA 25 I/O Controller Hubs (ICH). They are similar to the PIIX4 and are part 24 SUPPORTED DEVICES PCI ID 25 82801AA 2413 26 82801AB 2423 27 82801BA 2443 28 82801CA/CAM 2483 29 30 This driver supports several versions of Intel's I/O Controller Hubs (ICH). 31 For SMBus support, they are similar to the PIIX4 and are part 26 32 of Intel's '810' and other chipsets. 27 33 See the doc/busses/i2c-i801 file for details. … … 51 57 #define PCI_DEVICE_ID_INTEL_82801BA_2 0x2443 52 58 #endif 59 #define PCI_DEVICE_ID_INTEL_82801CA_SMBUS 0x2483 53 60 54 61 static int supported[] = {PCI_DEVICE_ID_INTEL_82801AA_3, 55 62 PCI_DEVICE_ID_INTEL_82801AB_3, 56 63 PCI_DEVICE_ID_INTEL_82801BA_2, 64 PCI_DEVICE_ID_INTEL_82801CA_SMBUS, 57 65 0 }; 58 66
