Changeset 4558
- Timestamp:
- 07/05/07 22:51:51 (5 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 3 modified
-
CHANGES (modified) (1 diff)
-
doc/chips/thmc50 (modified) (1 diff)
-
kernel/chips/thmc50.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r4557 r4558 16 16 Module i2c-nforce2: Add nForce MCP61, MCP65 support (2.6 backport) 17 17 Module lm85: Fix setting the fan speed min limit to 0 18 Module thmc50: Fix the i2c address range 18 19 Module w83627ehf: New (2.6 backport) 19 20 Programs i2cdump, i2cget, i2cset: Do not force the slave address by default -
lm-sensors/trunk/doc/chips/thmc50
r3007 r4558 7 7 * Analog Devices ADM1022 8 8 Prefix: 'adm1022' 9 Addresses scanned: I2C 0x2 D - 0x2F10 Datasheet: Publicly available at the Analog Devices website9 Addresses scanned: I2C 0x2C - 0x2E 10 Datasheet: http://www.analog.com/en/prod/0,2877,ADM1022,00.html 11 11 * Texas Instruments THMC50 12 12 Prefix: 'thmc50' 13 Addresses scanned: I2C 0x2 D - 0x2F14 Datasheet: Publicly available at the Texas Instruments' website13 Addresses scanned: I2C 0x2C - 0x2E 14 Datasheet: http://focus.ti.com/docs/prod/folders/print/thmc50.html 15 15 16 16 Authors: Frodo Looijaard <frodol@dds.nl> and -
lm-sensors/trunk/kernel/chips/thmc50.c
r3000 r4558 33 33 /* Addresses to scan */ 34 34 static unsigned short normal_i2c[] = { SENSORS_I2C_END }; 35 static unsigned short normal_i2c_range[] = { 0x2 D, 0x2E, SENSORS_I2C_END };35 static unsigned short normal_i2c_range[] = { 0x2C, 0x2E, SENSORS_I2C_END }; 36 36 static unsigned int normal_isa[] = { SENSORS_ISA_END }; 37 37 static unsigned int normal_isa_range[] = { SENSORS_ISA_END };
