diff options
-rw-r--r-- | drivers/i2c/busses/i2c-cros-ec-tunnel.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/i2c/busses/i2c-cros-ec-tunnel.c b/drivers/i2c/busses/i2c-cros-ec-tunnel.c index 43be23dfb115..8ca5cbbcec91 100644 --- a/drivers/i2c/busses/i2c-cros-ec-tunnel.c +++ b/drivers/i2c/busses/i2c-cros-ec-tunnel.c | |||
@@ -16,6 +16,8 @@ | |||
16 | #include <linux/platform_device.h> | 16 | #include <linux/platform_device.h> |
17 | #include <linux/slab.h> | 17 | #include <linux/slab.h> |
18 | 18 | ||
19 | #define I2C_MAX_RETRIES 3 | ||
20 | |||
19 | /** | 21 | /** |
20 | * struct ec_i2c_device - Driver data for I2C tunnel | 22 | * struct ec_i2c_device - Driver data for I2C tunnel |
21 | * | 23 | * |
@@ -290,6 +292,7 @@ static int ec_i2c_probe(struct platform_device *pdev) | |||
290 | bus->adap.algo_data = bus; | 292 | bus->adap.algo_data = bus; |
291 | bus->adap.dev.parent = &pdev->dev; | 293 | bus->adap.dev.parent = &pdev->dev; |
292 | bus->adap.dev.of_node = np; | 294 | bus->adap.dev.of_node = np; |
295 | bus->adap.retries = I2C_MAX_RETRIES; | ||
293 | 296 | ||
294 | err = i2c_add_adapter(&bus->adap); | 297 | err = i2c_add_adapter(&bus->adap); |
295 | if (err) { | 298 | if (err) { |