Unverified Commit a4db95b2 authored by Colin Ian King's avatar Colin Ian King Committed by Mark Brown
Browse files

ASoC: codecs: Fix spelling mistake "Unsupport" -> "Unsupported"



There are spelling mistakes in dev_err error messages. Fix them.

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20210924231003.144502-1-colin.king@canonical.com


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent e3a0dbc5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -864,7 +864,7 @@ static int rt1015_set_component_pll(struct snd_soc_component *component,

	ret = rl6231_pll_calc(freq_in, freq_out, &pll_code);
	if (ret < 0) {
		dev_err(component->dev, "Unsupport input clock %d\n", freq_in);
		dev_err(component->dev, "Unsupported input clock %d\n", freq_in);
		return ret;
	}

+1 −1
Original line number Diff line number Diff line
@@ -490,7 +490,7 @@ static int rt1016_set_component_pll(struct snd_soc_component *component,

	ret = rl6231_pll_calc(freq_in, freq_out * 4, &pll_code);
	if (ret < 0) {
		dev_err(component->dev, "Unsupport input clock %d\n", freq_in);
		dev_err(component->dev, "Unsupported input clock %d\n", freq_in);
		return ret;
	}

+1 −1
Original line number Diff line number Diff line
@@ -359,7 +359,7 @@ static int rt1019_set_dai_pll(struct snd_soc_dai *dai, int pll_id, int source,

	ret = rl6231_pll_calc(freq_in, freq_out, &pll_code);
	if (ret < 0) {
		dev_err(component->dev, "Unsupport input clock %d\n", freq_in);
		dev_err(component->dev, "Unsupported input clock %d\n", freq_in);
		return ret;
	}

+1 −1
Original line number Diff line number Diff line
@@ -841,7 +841,7 @@ static int rt1305_set_component_pll(struct snd_soc_component *component,

	ret = rl6231_pll_calc(freq_in, freq_out, &pll_code);
	if (ret < 0) {
		dev_err(component->dev, "Unsupport input clock %d\n", freq_in);
		dev_err(component->dev, "Unsupported input clock %d\n", freq_in);
		return ret;
	}

+1 −1
Original line number Diff line number Diff line
@@ -664,7 +664,7 @@ static int rt1308_set_component_pll(struct snd_soc_component *component,

	ret = rl6231_pll_calc(freq_in, freq_out, &pll_code);
	if (ret < 0) {
		dev_err(component->dev, "Unsupport input clock %d\n", freq_in);
		dev_err(component->dev, "Unsupported input clock %d\n", freq_in);
		return ret;
	}

Loading