diff mbox series

[RESEND,for-next,1/3] ASoC: tas2562: Fix sample rate error message

Message ID 20200226161628.29960-1-dmurphy@ti.com
State Superseded
Headers show
Series [RESEND,for-next,1/3] ASoC: tas2562: Fix sample rate error message | expand

Commit Message

Dan Murphy Feb. 26, 2020, 4:16 p.m. UTC
Fix error message for setting the sample rate.  It says bitwidth but
should say sample rate.

Signed-off-by: Dan Murphy <dmurphy@ti.com>
---
 sound/soc/codecs/tas2562.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/sound/soc/codecs/tas2562.c b/sound/soc/codecs/tas2562.c
index d5e04030a0c1..c7a4b3b74654 100644
--- a/sound/soc/codecs/tas2562.c
+++ b/sound/soc/codecs/tas2562.c
@@ -271,7 +271,7 @@  static int tas2562_hw_params(struct snd_pcm_substream *substream,
 
 	ret = tas2562_set_samplerate(tas2562, params_rate(params));
 	if (ret)
-		dev_err(tas2562->dev, "set bitwidth failed, %d\n", ret);
+		dev_err(tas2562->dev, "set sample rate failed, %d\n", ret);
 
 	return ret;
 }