Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1449780 > unrolled thread
| Started by | Guenter Roeck <linux@roeck-us.net> |
|---|---|
| First post | 2016-07-25 22:20 +0200 |
| Last post | 2016-07-25 22:50 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] i2c: i2c-cros-ec-tunnel: Reduce logging noise Guenter Roeck <linux@roeck-us.net> - 2016-07-25 22:20 +0200
Re: [PATCH] i2c: i2c-cros-ec-tunnel: Reduce logging noise Wolfram Sang <wsa@the-dreams.de> - 2016-07-25 22:50 +0200
| From | Guenter Roeck <linux@roeck-us.net> |
|---|---|
| Date | 2016-07-25 22:20 +0200 |
| Subject | [PATCH] i2c: i2c-cros-ec-tunnel: Reduce logging noise |
| Message-ID | <rYUw2-B7-27@gated-at.bofh.it> |
If an i2c access through i2c-cros-ec-tunnel returns an error, the following
log message is seen on the console.
cros-ec-i2c-tunnel ff200000.spi:ec@0:i2c-tunnel:
Error parsing EC i2c message -121
This can happen a lot if, for example, the i2c-detect command is executed.
Since it is perfectly normal for an i2c controller to report an error,
replace the error message with a debug message. Also, report -ENXIO
instead of -EREMOTEIO if the access error is due to NAK from the device,
as suggested in Documentation/i2c/fault-codes.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
---
drivers/i2c/busses/i2c-cros-ec-tunnel.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/i2c/busses/i2c-cros-ec-tunnel.c b/drivers/i2c/busses/i2c-cros-ec-tunnel.c
index a0d95ff682ae..95f26fecc6e9 100644
--- a/drivers/i2c/busses/i2c-cros-ec-tunnel.c
+++ b/drivers/i2c/busses/i2c-cros-ec-tunnel.c
@@ -154,7 +154,9 @@ static int ec_i2c_parse_response(const u8 *buf, struct i2c_msg i2c_msgs[],
resp = (const struct ec_response_i2c_passthru *)buf;
if (resp->i2c_status & EC_I2C_STATUS_TIMEOUT)
return -ETIMEDOUT;
- else if (resp->i2c_status & EC_I2C_STATUS_ERROR)
+ else if (resp->i2c_status & EC_I2C_STATUS_NAK)
+ return -ENXIO;
+ else if (resp->i2c_status)
return -EREMOTEIO;
/* Other side could send us back fewer messages, but not more */
@@ -223,7 +225,7 @@ static int ec_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg i2c_msgs[],
result = ec_i2c_parse_response(msg->data, i2c_msgs, &num);
if (result < 0) {
- dev_err(dev, "Error parsing EC i2c message %d\n", result);
+ dev_dbg(dev, "Error parsing EC i2c message %d\n", result);
goto exit;
}
--
2.5.0
[toc] | [next] | [standalone]
| From | Wolfram Sang <wsa@the-dreams.de> |
|---|---|
| Date | 2016-07-25 22:50 +0200 |
| Message-ID | <rYUZ3-Lt-5@gated-at.bofh.it> |
| In reply to | #1449780 |
[Multipart message — attachments visible in raw view] — view raw
> - else if (resp->i2c_status & EC_I2C_STATUS_ERROR)
> + else if (resp->i2c_status & EC_I2C_STATUS_NAK)
> + return -ENXIO;
> + else if (resp->i2c_status)
> return -EREMOTEIO;
Since you mentioned Documentation/i2c/fault-codes already: -EIO?
>
> /* Other side could send us back fewer messages, but not more */
> @@ -223,7 +225,7 @@ static int ec_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg i2c_msgs[],
>
> result = ec_i2c_parse_response(msg->data, i2c_msgs, &num);
> if (result < 0) {
> - dev_err(dev, "Error parsing EC i2c message %d\n", result);
> + dev_dbg(dev, "Error parsing EC i2c message %d\n", result);
For me, this message can go entirely, but I'll leave this up to you.
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web