Commit 875b0a473c3ddd80bc4ae88a65cd20027428e160

Authored by Jean Delvare
Committed by Jean Delvare
1 parent eb8a790809

i2c-amd756: Fix functionality flags

The i2c-amd756 driver pretends to support SMBus process call
transactions but actually does not. Fix it.

Signed-off-by: Jean Delvare <khali@linux-fr.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/i2c/busses/i2c-amd756.c
... ... @@ -290,7 +290,7 @@
290 290 {
291 291 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
292 292 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
293   - I2C_FUNC_SMBUS_BLOCK_DATA | I2C_FUNC_SMBUS_PROC_CALL;
  293 + I2C_FUNC_SMBUS_BLOCK_DATA;
294 294 }
295 295  
296 296 static const struct i2c_algorithm smbus_algorithm = {