Changeset 583 for lm-sensors/trunk/kernel/busses/i2c-i801.c
- Timestamp:
- 09/27/99 15:49:29 (14 years ago)
- Files:
-
- 1 modified
-
lm-sensors/trunk/kernel/busses/i2c-i801.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/kernel/busses/i2c-i801.c
r545 r583 95 95 static void i801_inc(struct i2c_adapter *adapter); 96 96 static void i801_dec(struct i2c_adapter *adapter); 97 static u32 i801_func(struct i2c_adapter *adapter); 97 98 98 99 #ifdef MODULE … … 109 110 /* slave_rcv */ NULL, 110 111 /* algo_control */ NULL, 112 /* functionality */ i801_func, 111 113 }; 112 114 … … 560 562 } 561 563 564 u32 i801_func(struct i2c_adapter *adapter) 565 { 566 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE | 567 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA | 568 I2C_FUNC_SMBUS_BLOCK_DATA; 569 } 570 562 571 int __init i2c_i801_init(void) 563 572 {
