Changeset 583 for lm-sensors/trunk/kernel/busses/i2c-piix4.c
- Timestamp:
- 09/27/99 15:49:29 (14 years ago)
- Files:
-
- 1 modified
-
lm-sensors/trunk/kernel/busses/i2c-piix4.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/kernel/busses/i2c-piix4.c
r558 r583 106 106 static void piix4_inc(struct i2c_adapter *adapter); 107 107 static void piix4_dec(struct i2c_adapter *adapter); 108 static u32 piix4_func(struct i2c_adapter *adapter); 108 109 109 110 #ifdef MODULE … … 120 121 /* slave_rcv */ NULL, 121 122 /* algo_control */ NULL, 123 /* functionality */ piix4_func, 122 124 }; 123 125 … … 447 449 } 448 450 451 u32 piix4_func(struct i2c_adapter *adapter) 452 { 453 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE | 454 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA | 455 I2C_FUNC_SMBUS_BLOCK_DATA | I2C_FUNC_SMBUS_PROC_CALL; 456 } 457 449 458 int __init i2c_piix4_init(void) 450 459 {
