Changeset 1594
- Timestamp:
- 11/10/02 21:10:14 (11 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 3 modified
-
CHANGES (modified) (2 diffs)
-
doc/busses/i2c-viapro (modified) (1 diff)
-
kernel/busses/i2c-viapro.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r1589 r1594 32 32 Makefile: Take kernel source location from /lib/modules/x.x.x/build 33 33 Module adm1021: Add support for MC1066 34 Module bmcsensors: New 34 35 Module dmi_scan: Rename symbol duplicated in kernel; apply fixes from 35 36 kernel 2.5.43 … … 37 38 Module i2c-amd756: Configure base address for nForce support; 38 39 check for uninitialized base address 40 Module i2c-ipmi: New 39 41 Module i2c-sis630: Add support for SiS730 40 42 Module i2c-sis645: Improve support for SiS645/961; 41 43 add support for SiS645DX/961 and SiS735 42 Module i2c-viapro: VT8233A (new ID 0x3177)44 Module i2c-viapro: Add support for VT8233A (new ID 0x3177) and VT8235 43 45 Module lm87: Add multiple VRM version support 44 46 Module w83781d: Fix in0/in1 initialization -
lm-sensors/trunk/doc/busses/i2c-viapro
r1376 r1594 7 7 Datasheet: Sometimes available at the VIA website 8 8 9 * VIA Technologies, Inc. VT82C686 9 * VIA Technologies, Inc. VT82C686A/B 10 10 Datasheet: Sometimes available at the VIA website 11 11 12 * VIA Technologies, Inc. VT8231, VT8233, VT8233A 12 * VIA Technologies, Inc. VT8231, VT8233, VT8233A, VT8235 13 13 Datasheet: available on request from Via 14 14 -
lm-sensors/trunk/kernel/busses/i2c-viapro.c
r1558 r1594 2 2 i2c-viapro.c - Part of lm_sensors, Linux kernel modules for hardware 3 3 monitoring 4 Copyright (c) 1998 - 200 1Frodo Looijaard <frodol@dds.nl>,4 Copyright (c) 1998 - 2002 Frodo Looijaard <frodol@dds.nl>, 5 5 Philip Edelbrock <phil@netroedge.com>, Kyösti Mälkki <kmalkki@cc.hut.fi>, 6 6 Mark D. Studebaker <mdsxyz123@yahoo.com> … … 29 29 8233 30 30 8233A (0x3147 and 0x3177) 31 8235 31 32 Note: we assume there can only be one device, with one SMBus interface. 32 33 */ … … 76 77 {0x3177, SMBBA3, 0xD2, "VT8233A"}, 77 78 {0x8235, SMBBA1, 0xD2, "VT8231"}, 79 {0x3074, SMBBA3, 0xD2, "VT8235"}, 78 80 {0, 0, 0, NULL} 79 81 };
