aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWolfram Sang <wsa+renesas@sang-engineering.com>2024-04-10 13:24:19 +0200
committerAndi Shyti <andi.shyti@kernel.org>2024-04-23 00:41:24 +0200
commitdc72daa5cdf1c6ffebaef0c6df1f4cdeb15cadd6 (patch)
tree937cf3c1f2aa762c6e6c1752f0608e8ffe2d3836
parent7aaff22d3e939c5187512188d7e27eb5e93ae41e (diff)
downloadrenesas-drivers-dc72daa5cdf1c6ffebaef0c6df1f4cdeb15cadd6.tar.gz
i2c: davinci: remove printout on handled timeouts
Notice: this object is not reachable from any branch.
I2C and SMBus timeouts are not something the user needs to be informed about on controller level. The client driver may know if that really is a problem and give more detailed information to the user. The controller should just pass this information upwards. Remove the printout. Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Signed-off-by: Andi Shyti <andi.shyti@kernel.org>
Notice: this object is not reachable from any branch.
-rw-r--r--drivers/i2c/busses/i2c-davinci.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-davinci.c b/drivers/i2c/busses/i2c-davinci.c
index 02b3b1160fb062..7ae611120cfa82 100644
--- a/drivers/i2c/busses/i2c-davinci.c
+++ b/drivers/i2c/busses/i2c-davinci.c
@@ -489,7 +489,6 @@ i2c_davinci_xfer_msg(struct i2c_adapter *adap, struct i2c_msg *msg, int stop)
time_left = wait_for_completion_timeout(&dev->cmd_complete,
dev->adapter.timeout);
if (!time_left) {
- dev_err(dev->dev, "controller timed out\n");
i2c_recover_bus(adap);
dev->buf_len = 0;
return -ETIMEDOUT;