Commit 8f9974d9 authored by Amadeusz Sławiński's avatar Amadeusz Sławiński Committed by Mark Brown

ASoC: topology: Fix typo in functions name

Topology is being abbreviated to "tplg", not "tplc", however, few
functions have typo in name, fix it.
Reviewed-by: default avatarCezary Rojewski <cezary.rojewski@intel.com>
Reviewed-by: default avatarRanjani Sridharan <ranjani.sridharan@linux.intel.com>
Signed-off-by: default avatarAmadeusz Sławiński <amadeuszx.slawinski@linux.intel.com>
Link: https://lore.kernel.org/r/20230127231111.937721-4-amadeuszx.slawinski@linux.intel.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 6257d224
...@@ -185,7 +185,7 @@ static const struct soc_tplg_map dapm_map[] = { ...@@ -185,7 +185,7 @@ static const struct soc_tplg_map dapm_map[] = {
{SND_SOC_TPLG_DAPM_DECODER, snd_soc_dapm_decoder}, {SND_SOC_TPLG_DAPM_DECODER, snd_soc_dapm_decoder},
}; };
static int tplc_chan_get_reg(struct soc_tplg *tplg, static int tplg_chan_get_reg(struct soc_tplg *tplg,
struct snd_soc_tplg_channel *chan, int map) struct snd_soc_tplg_channel *chan, int map)
{ {
int i; int i;
...@@ -198,7 +198,7 @@ static int tplc_chan_get_reg(struct soc_tplg *tplg, ...@@ -198,7 +198,7 @@ static int tplc_chan_get_reg(struct soc_tplg *tplg,
return -EINVAL; return -EINVAL;
} }
static int tplc_chan_get_shift(struct soc_tplg *tplg, static int tplg_chan_get_shift(struct soc_tplg *tplg,
struct snd_soc_tplg_channel *chan, int map) struct snd_soc_tplg_channel *chan, int map)
{ {
int i; int i;
...@@ -779,10 +779,10 @@ static int soc_tplg_dmixer_create(struct soc_tplg *tplg, size_t size) ...@@ -779,10 +779,10 @@ static int soc_tplg_dmixer_create(struct soc_tplg *tplg, size_t size)
kc.access = le32_to_cpu(mc->hdr.access); kc.access = le32_to_cpu(mc->hdr.access);
/* we only support FL/FR channel mapping atm */ /* we only support FL/FR channel mapping atm */
sm->reg = tplc_chan_get_reg(tplg, mc->channel, SNDRV_CHMAP_FL); sm->reg = tplg_chan_get_reg(tplg, mc->channel, SNDRV_CHMAP_FL);
sm->rreg = tplc_chan_get_reg(tplg, mc->channel, SNDRV_CHMAP_FR); sm->rreg = tplg_chan_get_reg(tplg, mc->channel, SNDRV_CHMAP_FR);
sm->shift = tplc_chan_get_shift(tplg, mc->channel, SNDRV_CHMAP_FL); sm->shift = tplg_chan_get_shift(tplg, mc->channel, SNDRV_CHMAP_FL);
sm->rshift = tplc_chan_get_shift(tplg, mc->channel, SNDRV_CHMAP_FR); sm->rshift = tplg_chan_get_shift(tplg, mc->channel, SNDRV_CHMAP_FR);
sm->max = le32_to_cpu(mc->max); sm->max = le32_to_cpu(mc->max);
sm->min = le32_to_cpu(mc->min); sm->min = le32_to_cpu(mc->min);
...@@ -926,10 +926,10 @@ static int soc_tplg_denum_create(struct soc_tplg *tplg, size_t size) ...@@ -926,10 +926,10 @@ static int soc_tplg_denum_create(struct soc_tplg *tplg, size_t size)
kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER; kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
kc.access = le32_to_cpu(ec->hdr.access); kc.access = le32_to_cpu(ec->hdr.access);
se->reg = tplc_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL); se->reg = tplg_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL);
se->shift_l = tplc_chan_get_shift(tplg, ec->channel, se->shift_l = tplg_chan_get_shift(tplg, ec->channel,
SNDRV_CHMAP_FL); SNDRV_CHMAP_FL);
se->shift_r = tplc_chan_get_shift(tplg, ec->channel, se->shift_r = tplg_chan_get_shift(tplg, ec->channel,
SNDRV_CHMAP_FL); SNDRV_CHMAP_FL);
se->mask = le32_to_cpu(ec->mask); se->mask = le32_to_cpu(ec->mask);
...@@ -1160,13 +1160,13 @@ static int soc_tplg_dapm_widget_dmixer_create(struct soc_tplg *tplg, struct snd_ ...@@ -1160,13 +1160,13 @@ static int soc_tplg_dapm_widget_dmixer_create(struct soc_tplg *tplg, struct snd_
kc->access = le32_to_cpu(mc->hdr.access); kc->access = le32_to_cpu(mc->hdr.access);
/* we only support FL/FR channel mapping atm */ /* we only support FL/FR channel mapping atm */
sm->reg = tplc_chan_get_reg(tplg, mc->channel, sm->reg = tplg_chan_get_reg(tplg, mc->channel,
SNDRV_CHMAP_FL); SNDRV_CHMAP_FL);
sm->rreg = tplc_chan_get_reg(tplg, mc->channel, sm->rreg = tplg_chan_get_reg(tplg, mc->channel,
SNDRV_CHMAP_FR); SNDRV_CHMAP_FR);
sm->shift = tplc_chan_get_shift(tplg, mc->channel, sm->shift = tplg_chan_get_shift(tplg, mc->channel,
SNDRV_CHMAP_FL); SNDRV_CHMAP_FL);
sm->rshift = tplc_chan_get_shift(tplg, mc->channel, sm->rshift = tplg_chan_get_shift(tplg, mc->channel,
SNDRV_CHMAP_FR); SNDRV_CHMAP_FR);
sm->max = le32_to_cpu(mc->max); sm->max = le32_to_cpu(mc->max);
...@@ -1232,10 +1232,10 @@ static int soc_tplg_dapm_widget_denum_create(struct soc_tplg *tplg, struct snd_k ...@@ -1232,10 +1232,10 @@ static int soc_tplg_dapm_widget_denum_create(struct soc_tplg *tplg, struct snd_k
kc->access = le32_to_cpu(ec->hdr.access); kc->access = le32_to_cpu(ec->hdr.access);
/* we only support FL/FR channel mapping atm */ /* we only support FL/FR channel mapping atm */
se->reg = tplc_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL); se->reg = tplg_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL);
se->shift_l = tplc_chan_get_shift(tplg, ec->channel, se->shift_l = tplg_chan_get_shift(tplg, ec->channel,
SNDRV_CHMAP_FL); SNDRV_CHMAP_FL);
se->shift_r = tplc_chan_get_shift(tplg, ec->channel, se->shift_r = tplg_chan_get_shift(tplg, ec->channel,
SNDRV_CHMAP_FR); SNDRV_CHMAP_FR);
se->items = le32_to_cpu(ec->items); se->items = le32_to_cpu(ec->items);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment