diff options
author | Colin Ian King <colin.king@canonical.com> | 2016-08-24 06:48:06 (GMT) |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-08-24 09:11:55 (GMT) |
commit | e56375155e95019cd4abc55d30c2c1a415037e27 (patch) | |
tree | 7514bf4f1b394cc8900e24b8170691e2a16f4a93 | |
parent | 29b4817d4018df78086157ea3a55c1d9424a7cfc (diff) | |
download | linux-e56375155e95019cd4abc55d30c2c1a415037e27.tar.xz |
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>
-rw-r--r-- | sound/soc/codecs/tas5086.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/tas5086.c b/sound/soc/codecs/tas5086.c index d49d25d..1666ea6 100644 --- a/sound/soc/codecs/tas5086.c +++ b/sound/soc/codecs/tas5086.c @@ -387,7 +387,7 @@ static int tas5086_hw_params(struct snd_pcm_substream *substream, val = index_in_array(tas5086_ratios, ARRAY_SIZE(tas5086_ratios), priv->mclk / priv->rate); if (val < 0) { - dev_err(codec->dev, "Inavlid MCLK / Fs ratio\n"); + dev_err(codec->dev, "Invalid MCLK / Fs ratio\n"); return -EINVAL; } |