Changeset 654
- Timestamp:
- 12/02/99 03:05:25 (9 years ago)
- Files:
-
- lm-sensors/trunk/README (modified) (1 diff)
- lm-sensors/trunk/kernel/busses/Module.mk (modified) (1 diff)
- lm-sensors/trunk/kernel/busses/i2c-sis5595.c (added)
- lm-sensors/trunk/prog/detect/sensors-detect (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/README
r649 r654 33 33 Intel ICH (used in the Intel 810 and 810E chipsets) 34 34 Intel PIIX4 (used in most Intel chipsets) 35 SiS 5595 (used in many SiS chipsets) 35 36 VIA Technologies 82C586B (used in most VIA chipsets) 36 37 VIA Technologies VT596A/B (used in some more modern VIA chipsets) lm-sensors/trunk/kernel/busses/Module.mk
r643 r654 27 27 $(MODULE_DIR)/i2c-viapro.o \ 28 28 $(MODULE_DIR)/i2c-voodoo3.o \ 29 $(MODULE_DIR)/i2c-amd756.o 29 $(MODULE_DIR)/i2c-amd756.o \ 30 $(MODULE_DIR)/i2c-sis5595.o 30 31 ifneq ($(shell if grep -q '^CONFIG_I2C_ALI15X3=y' $(LINUX)/.config; then echo 1; fi),1) 31 32 KERNELBUSSESTARGETS += $(MODULE_DIR)/i2c-ali15x3.o lm-sensors/trunk/prog/detect/sensors-detect
r643 r654 101 101 devid => 0x0008, 102 102 func => 0, 103 procid => "Silicon Integrated Systems 85C503", 104 match => sub { 0 }, 103 procid => "Silicon Integrated Systems SIS5595", 104 driver => "i2c-sis5595", 105 match => sub { $_[0] =~ /^SMBus SIS5595 adapter at [0-9,a-f]{4}/ }, 105 106 } , 106 107 {
