Changeset 5257
- Timestamp:
- 05/19/08 10:53:02 (5 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
kernel/busses/i2c-amd756.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r5253 r5257 5 5 Library: Don't choke on unrecognized devices, part 2 6 6 Module asb100: Remove some dead code (2.6 backport) 7 Module i2c-amd756: Fix functionality flags (2.6 backport) 7 8 Module i2c-amd756-s4882: Fix an error path (2.6 backport) 8 9 Module i2c-i801: Drop broken I2C block read support -
lm-sensors/trunk/kernel/busses/i2c-amd756.c
r4057 r5257 207 207 int i, len; 208 208 209 /** TODO: Should I supporte the 10-bit transfers? */210 209 switch (size) { 211 /* TODO: proc call is supported, I'm just not sure what to do here... */212 210 case I2C_SMBUS_QUICK: 213 211 outw_p(((addr & 0x7f) << 1) | (read_write & 0x01), … … 313 311 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE | 314 312 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA | 315 I2C_FUNC_SMBUS_BLOCK_DATA | I2C_FUNC_SMBUS_PROC_CALL;313 I2C_FUNC_SMBUS_BLOCK_DATA; 316 314 } 317 315
