diff mbox series

ASoC: q6apm-lpass-dais: Print APM port id in decimal on enable error

Message ID 20250514-topic-asoc_print_hexdec-v1-1-85e90947ec4f@oss.qualcomm.com
State New
Headers show
Series ASoC: q6apm-lpass-dais: Print APM port id in decimal on enable error | expand

Commit Message

Konrad Dybcio May 14, 2025, 5:53 p.m. UTC
From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>

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>
---
 sound/soc/qcom/qdsp6/q6apm-lpass-dais.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


---
base-commit: edef457004774e598fc4c1b7d1d4f0bcd9d0bb30
change-id: 20250514-topic-asoc_print_hexdec-524337657995

Best regards,

Comments

Mark Brown May 15, 2025, 9:39 a.m. UTC | #1
On Wed, 14 May 2025 19:53:38 +0200, Konrad Dybcio wrote:
> 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.
> 
> 

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next

Thanks!

[1/1] ASoC: q6apm-lpass-dais: Print APM port id in decimal on enable error
      commit: 723059ee896f9f302cfd36f49eac192ed4cfd3e1

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark
diff mbox series

Patch

diff --git a/sound/soc/qcom/qdsp6/q6apm-lpass-dais.c b/sound/soc/qcom/qdsp6/q6apm-lpass-dais.c
index 9c98a35ad09945173c15dd6dff34830f43fe9388..a0d90462fd6a3807502f3e272dfb852d4d9c0f62 100644
--- a/sound/soc/qcom/qdsp6/q6apm-lpass-dais.c
+++ b/sound/soc/qcom/qdsp6/q6apm-lpass-dais.c
@@ -206,7 +206,7 @@  static int q6apm_lpass_dai_prepare(struct snd_pcm_substream *substream, struct s
 
 	rc = q6apm_graph_start(dai_data->graph[dai->id]);
 	if (rc < 0) {
-		dev_err(dai->dev, "fail to start APM port %x\n", dai->id);
+		dev_err(dai->dev, "Failed to start APM port %d\n", dai->id);
 		goto err;
 	}
 	dai_data->is_port_started[dai->id] = true;