Skip to content

Commit 723059e

Browse files
quic-kdybciobroonie
authored andcommitted
ASoC: q6apm-lpass-dais: Print APM port id in decimal on enable error
Change the port enable failure error message format specifier to make it less confusing. Take the chance to align the style ('fail'->'Failed') while at it. Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> Link: https://patch.msgid.link/20250514-topic-asoc_print_hexdec-v1-1-85e90947ec4f@oss.qualcomm.com Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent 5159057 commit 723059e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sound/soc/qcom/qdsp6/q6apm-lpass-dais.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ static int q6apm_lpass_dai_prepare(struct snd_pcm_substream *substream, struct s
206206

207207
rc = q6apm_graph_start(dai_data->graph[dai->id]);
208208
if (rc < 0) {
209-
dev_err(dai->dev, "fail to start APM port %x\n", dai->id);
209+
dev_err(dai->dev, "Failed to start APM port %d\n", dai->id);
210210
goto err;
211211
}
212212
dai_data->is_port_started[dai->id] = true;

0 commit comments

Comments
 (0)