aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWolfram Sang <wsa+renesas@sang-engineering.com>2024-04-10 13:24:32 +0200
committerAndi Shyti <andi.shyti@kernel.org>2024-04-23 00:41:29 +0200
commit507a2da9539cdb839a1a2e57bfcca644bcfe0f03 (patch)
treeeba6d1bea8d942cbaa72f4a03f20ef7e5c6db138
parentc31bc8e162890cda38d045e73ff0004119ab28e7 (diff)
downloadrenesas-drivers-507a2da9539cdb839a1a2e57bfcca644bcfe0f03.tar.gz
i2c: uniphier: 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-uniphier.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/i2c/busses/i2c-uniphier.c b/drivers/i2c/busses/i2c-uniphier.c
index 854ac25b58628..e1b4c80e02854 100644
--- a/drivers/i2c/busses/i2c-uniphier.c
+++ b/drivers/i2c/busses/i2c-uniphier.c
@@ -71,10 +71,8 @@ static int uniphier_i2c_xfer_byte(struct i2c_adapter *adap, u32 txdata,
writel(txdata, priv->membase + UNIPHIER_I2C_DTRM);
time_left = wait_for_completion_timeout(&priv->comp, adap->timeout);
- if (unlikely(!time_left)) {
- dev_err(&adap->dev, "transaction timeout\n");
+ if (unlikely(!time_left))
return -ETIMEDOUT;
- }
rxdata = readl(priv->membase + UNIPHIER_I2C_DREC);
if (rxdatap)