ASoC: tas5086: fix typo: "Inavlid" -> "Invalid"
trivial typo fix in dev_err message Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
29b4817d40
commit
e56375155e
|
@ -387,7 +387,7 @@ static int tas5086_hw_params(struct snd_pcm_substream *substream,
|
||||||
val = index_in_array(tas5086_ratios, ARRAY_SIZE(tas5086_ratios),
|
val = index_in_array(tas5086_ratios, ARRAY_SIZE(tas5086_ratios),
|
||||||
priv->mclk / priv->rate);
|
priv->mclk / priv->rate);
|
||||||
if (val < 0) {
|
if (val < 0) {
|
||||||
dev_err(codec->dev, "Inavlid MCLK / Fs ratio\n");
|
dev_err(codec->dev, "Invalid MCLK / Fs ratio\n");
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue