Changeset 1775
- Timestamp:
- 06/08/03 23:05:58 (10 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 2 modified
-
kernel/busses/i2c-i801.c (modified) (3 diffs)
-
prog/detect/sensors-detect (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/kernel/busses/i2c-i801.c
r1773 r1775 28 28 82801CA/CAM 2483 29 29 82801DB 24C3 (HW PEC supported, 32 byte buffer not supported) 30 82801EB 24D3 (HW PEC supported, 32 byte buffer not supported) 30 31 31 32 This driver supports several versions of Intel's I/O Controller Hubs (ICH). … … 129 130 130 131 I801_dev = dev; 131 if (dev->device == PCI_DEVICE_ID_INTEL_82801DB_3) 132 if (dev->device == PCI_DEVICE_ID_INTEL_82801DB_3 || 133 dev->device == 0x24d3) 132 134 isich4 = 1; 133 135 else … … 590 592 .subdevice = PCI_ANY_ID, 591 593 }, 594 { 595 .vendor = PCI_VENDOR_ID_INTEL, 596 .device = 0x24d3, /* 82801EB ICH5 */ 597 .subvendor = PCI_ANY_ID, 598 .subdevice = PCI_ANY_ID, 599 }, 592 600 { 0, } 593 601 }; -
lm-sensors/trunk/prog/detect/sensors-detect
r1774 r1775 106 106 func => 3, 107 107 procid => "Intel 82801DB ICH4", 108 driver => "i2c-i801", 109 match => sub { $_[0] =~ /^SMBus I801 adapter at [0-9,a-f]{4}/ }, 110 } , 111 { 112 vendid => 0x8086, 113 devid => 0x24D3, 114 func => 3, 115 procid => "Intel 82801EB ICH5", 108 116 driver => "i2c-i801", 109 117 match => sub { $_[0] =~ /^SMBus I801 adapter at [0-9,a-f]{4}/ },
