Changeset 583 for lm-sensors/trunk/kernel/busses/i2c-viapro.c
- Timestamp:
- 09/27/99 15:49:29 (14 years ago)
- Files:
-
- 1 modified
-
lm-sensors/trunk/kernel/busses/i2c-viapro.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/kernel/busses/i2c-viapro.c
r522 r583 123 123 static void vt596_inc(struct i2c_adapter *adapter); 124 124 static void vt596_dec(struct i2c_adapter *adapter); 125 static u32 vt596_func(struct i2c_adapter *adapter); 125 126 126 127 #ifdef MODULE … … 137 138 /* slave_rcv */ NULL, 138 139 /* algo_control */ NULL, 140 /* functionality */ vt596_func, 139 141 }; 140 142 … … 484 486 } 485 487 488 u32 vt596_func(struct i2c_adapter *adapter) 489 { 490 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE | 491 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA | 492 I2C_FUNC_SMBUS_BLOCK_DATA; 493 } 494 486 495 int __init i2c_vt596_init(void) 487 496 {
