Skip to content

Commit

Permalink
ASoC: SOF: ipc3-control: Rename snd_sof_refresh_control()
Browse files Browse the repository at this point in the history
Rename the snd_sof_refresh_control() to sof_ipc3_refresh_control() to
follow the function naming convention for IPC specific code.

Signed-off-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Link: https://lore.kernel.org/r/20230313110344.16644-2-peter.ujfalusi@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
Peter Ujfalusi authored and Mark Brown committed Mar 13, 2023
1 parent 32ef0f1 commit 3eac8de
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions sound/soc/sof/ipc3-control.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ static int sof_ipc3_set_get_kcontrol_data(struct snd_sof_control *scontrol,
return ret;
}

static void snd_sof_refresh_control(struct snd_sof_control *scontrol)
static void sof_ipc3_refresh_control(struct snd_sof_control *scontrol)
{
struct sof_ipc_ctrl_data *cdata = scontrol->ipc_control_data;
struct snd_soc_component *scomp = scontrol->scomp;
Expand Down Expand Up @@ -138,7 +138,7 @@ static int sof_ipc3_volume_get(struct snd_sof_control *scontrol,
unsigned int channels = scontrol->num_channels;
unsigned int i;

snd_sof_refresh_control(scontrol);
sof_ipc3_refresh_control(scontrol);

/* read back each channel */
for (i = 0; i < channels; i++)
Expand Down Expand Up @@ -189,7 +189,7 @@ static int sof_ipc3_switch_get(struct snd_sof_control *scontrol,
unsigned int channels = scontrol->num_channels;
unsigned int i;

snd_sof_refresh_control(scontrol);
sof_ipc3_refresh_control(scontrol);

/* read back each channel */
for (i = 0; i < channels; i++)
Expand Down Expand Up @@ -237,7 +237,7 @@ static int sof_ipc3_enum_get(struct snd_sof_control *scontrol,
unsigned int channels = scontrol->num_channels;
unsigned int i;

snd_sof_refresh_control(scontrol);
sof_ipc3_refresh_control(scontrol);

/* read back each channel */
for (i = 0; i < channels; i++)
Expand Down Expand Up @@ -286,7 +286,7 @@ static int sof_ipc3_bytes_get(struct snd_sof_control *scontrol,
struct sof_abi_hdr *data = cdata->data;
size_t size;

snd_sof_refresh_control(scontrol);
sof_ipc3_refresh_control(scontrol);

if (scontrol->max_size > sizeof(ucontrol->value.bytes.data)) {
dev_err_ratelimited(scomp->dev, "data max %zu exceeds ucontrol data array size\n",
Expand Down Expand Up @@ -352,7 +352,7 @@ static int sof_ipc3_bytes_ext_get(struct snd_sof_control *scontrol,
struct snd_ctl_tlv header;
size_t data_size;

snd_sof_refresh_control(scontrol);
sof_ipc3_refresh_control(scontrol);

/*
* Decrement the limit by ext bytes header size to
Expand Down

0 comments on commit 3eac8de

Please sign in to comment.