Changeset 4953
- Timestamp:
- 10/14/07 14:35:10 (1 year ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (1 diff)
- lm-sensors/trunk/kernel/busses/i2c-nforce2.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r4950 r4953 22 22 Module fscher: Add missing read of control register (2.6 backport) 23 23 Module i2c-i801: Add Tolapai support (2.6 backport) 24 Module i2c-nforce2: Declare PEC as supported (2.6 backport) 24 25 Module i2c-piix4: Add ATI SB700 and SB800 support (2.6 backport) 25 26 Module lm93: Fix an array overrun (2.6 backport) lm-sensors/trunk/kernel/busses/i2c-nforce2.c
r4612 r4953 135 135 unsigned short flags, char read_write, 136 136 u8 command, int size, union i2c_smbus_data *data); 137 /*138 static int nforce2_block_transaction(union i2c_smbus_data *data,139 char read_write, int i2c_enable);140 */141 137 static u32 nforce2_func(struct i2c_adapter *adapter); 142 138 … … 279 275 /* other functionality might be possible, but is not tested */ 280 276 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE | 281 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA /*|282 I2C_FUNC_SMBUS_ BLOCK_DATA */;277 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA | 278 I2C_FUNC_SMBUS_HWPEC_CALC; 283 279 } 284 280
