summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Dooley <dooleyc@google.com>2022-11-17 17:44:57 +0000
committerCraig Dooley <dooleyc@google.com>2022-11-17 17:44:57 +0000
commitb9f9d5cdef1e524c9eb45efac077fc1fb4308040 (patch)
treea385cecc6c15a83918e1ced6c568c0b98c1b52ee
parent941f4fe78a7d00941c01666c864bf235c0918a28 (diff)
downloadaoc-b9f9d5cdef1e524c9eb45efac077fc1fb4308040.tar.gz
SSCD was truncating the last 3 digits, leading to improper aggregation Bug: 248350285 Change-Id: Ia5cec9a23d491296c22e274bdeee139af7f2d15e Signed-off-by: Craig Dooley <dooleyc@google.com>
-rwxr-xr-xalsa/aoc_alsa_hw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/alsa/aoc_alsa_hw.c b/alsa/aoc_alsa_hw.c
index 712bd5c..ad06bea 100755
--- a/alsa/aoc_alsa_hw.c
+++ b/alsa/aoc_alsa_hw.c
@@ -271,7 +271,7 @@ static int aoc_audio_control(const char *cmd_channel, const uint8_t *cmd,
uint16_t cmd_id = ((struct CMD_HDR *)cmd)->id;
char reset_reason[40];
- scnprintf(reset_reason, sizeof(reset_reason), "No response to ALSA command %#06x",
+ scnprintf(reset_reason, sizeof(reset_reason), "ALSA command timeout %#06x",
cmd_id);
pr_err(ALSA_AOC_CMD " ERR:timeout - cmd [%s] id %#06x\n",
CMD_CHANNEL(dev), cmd_id);