diff options
author | Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> | 2020-12-04 20:03:13 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-12-05 02:26:32 +0300 |
commit | 518a760cc369eafeef0d6c76d8c30a8acab2c921 (patch) | |
tree | b0d37e5aaa67a8dc50c278ad67a905db4fd1a5bb /sound | |
parent | 4ecc08b2f51d874f35185724eda769492b60a18d (diff) | |
download | linux-518a760cc369eafeef0d6c76d8c30a8acab2c921.tar.xz |
ASoC: SOF: control: fix cppcheck warning in snd_sof_volume_info()
Fix cppcheck warning:
sound/soc/sof/control.c:117:82: style:inconclusive: Function
'snd_sof_volume_info' argument 2 names different: declaration
'ucontrol' definition 'uinfo'. [funcArgNamesDifferent]
Fixes: fca18e62984a ("ASoC: SOF: control: override volume info callback")
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
Link: https://lore.kernel.org/r/20201204170313.2704499-1-kai.vehmanen@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/sof/sof-audio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/sof/sof-audio.h b/sound/soc/sof/sof-audio.h index d00a918b6f39..dc930fc2f4b5 100644 --- a/sound/soc/sof/sof-audio.h +++ b/sound/soc/sof/sof-audio.h @@ -125,7 +125,7 @@ int snd_sof_volume_get(struct snd_kcontrol *kcontrol, int snd_sof_volume_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol); int snd_sof_volume_info(struct snd_kcontrol *kcontrol, - struct snd_ctl_elem_info *ucontrol); + struct snd_ctl_elem_info *uinfo); int snd_sof_switch_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol); int snd_sof_switch_put(struct snd_kcontrol *kcontrol, |