linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] ASoC: cros_ec_codec: Log results when EC commands fail
@ 2020-07-03  7:19 Yu-Hsuan Hsu
  2020-07-03  7:31 ` Tzung-Bi Shih
  2020-07-03  8:38 ` Enric Balletbo i Serra
  0 siblings, 2 replies; 13+ messages in thread
From: Yu-Hsuan Hsu @ 2020-07-03  7:19 UTC (permalink / raw)
  To: linux-kernel
  Cc: Tzung-Bi Shih, Cheng-Yi Chiang, Enric Balletbo i Serra,
	Guenter Roeck, Liam Girdwood, Mark Brown, Jaroslav Kysela,
	Takashi Iwai, Benson Leung, alsa-devel, Yu-Hsuan Hsu

Log results of failed EC commands to identify a problem more easily.

Replace cros_ec_cmd_xfer_status with cros_ec_cmd_xfer because the result
has already been checked in this function. The wrapper is not needed.

Signed-off-by: Yu-Hsuan Hsu <yuhsuan@chromium.org>
---
 sound/soc/codecs/cros_ec_codec.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/sound/soc/codecs/cros_ec_codec.c b/sound/soc/codecs/cros_ec_codec.c
index 8d45c628e988e..a4ab62f59efa6 100644
--- a/sound/soc/codecs/cros_ec_codec.c
+++ b/sound/soc/codecs/cros_ec_codec.c
@@ -90,10 +90,17 @@ static int send_ec_host_command(struct cros_ec_device *ec_dev, uint32_t cmd,
 	if (outsize)
 		memcpy(msg->data, out, outsize);
 
-	ret = cros_ec_cmd_xfer_status(ec_dev, msg);
+	ret = cros_ec_cmd_xfer(ec_dev, msg);
 	if (ret < 0)
 		goto error;
 
+	if (msg->result != EC_RES_SUCCESS) {
+		dev_err(ec_dev->dev, "Command %d failed: %d\n", cmd,
+			msg->result);
+		ret = -EPROTO;
+		goto error;
+	}
+
 	if (insize)
 		memcpy(in, msg->data, insize);
 
-- 
2.27.0.212.ge8ba1cc988-goog


^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2020-07-06  9:46 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-03  7:19 [PATCH v2] ASoC: cros_ec_codec: Log results when EC commands fail Yu-Hsuan Hsu
2020-07-03  7:31 ` Tzung-Bi Shih
2020-07-03  8:10   ` Yu-Hsuan Hsu
2020-07-03  8:38 ` Enric Balletbo i Serra
2020-07-03  8:48   ` Yu-Hsuan Hsu
2020-07-03  9:19     ` Enric Balletbo i Serra
2020-07-03  9:40       ` Yu-Hsuan Hsu
2020-07-03 10:56         ` Enric Balletbo i Serra
2020-07-03 15:58           ` Guenter Roeck
2020-07-03 19:11             ` Yu-Hsuan Hsu
2020-07-03 19:28               ` Guenter Roeck
2020-07-04 11:34                 ` Yu-Hsuan Hsu
2020-07-06  9:46                   ` Yu-Hsuan Hsu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).