i2c: add i2c quirk flag for unsupported clock stretching
authorNicola Corna <nicola@corna.info>
Thu, 29 Oct 2015 11:34:23 +0000 (12:34 +0100)
committerWolfram Sang <wsa@the-dreams.de>
Mon, 30 Nov 2015 17:37:24 +0000 (18:37 +0100)
Add I2C_AQ_NO_CLK_STRETCH quirk flag, to be used when clock stretching is
not supported.

Signed-off-by: Nicola Corna <nicola@corna.info>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
include/linux/i2c.h

index 768063baafbf5efe6c122a123b0c3f9bfe3bd050..96970024883ff9e955b8043684493b7f1753cbe4 100644 (file)
@@ -493,6 +493,8 @@ struct i2c_adapter_quirks {
 /* convenience macro for typical write-then read case */
 #define I2C_AQ_COMB_WRITE_THEN_READ    (I2C_AQ_COMB | I2C_AQ_COMB_WRITE_FIRST | \
                                         I2C_AQ_COMB_READ_SECOND | I2C_AQ_COMB_SAME_ADDR)
+/* clock stretching is not supported */
+#define I2C_AQ_NO_CLK_STRETCH          BIT(4)
 
 /*
  * i2c_adapter is the structure used to identify a physical i2c bus along
This page took 0.025406 seconds and 5 git commands to generate.