diff options
author | Jiapeng Chong <jiapeng.chong@linux.alibaba.com> | 2021-06-16 07:55:41 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-06-16 16:41:14 +0200 |
commit | e99d7c69fd4c18e7319f8aab8e252b12130796bf (patch) | |
tree | 2be25c788b6d9c00fd15a73366984c6bd471fb73 /sound/soc/codecs/hdmi-codec.c | |
parent | ASoC: codecs: wcd938x: fix boolreturn.cocci warning (diff) | |
download | linux-e99d7c69fd4c18e7319f8aab8e252b12130796bf.tar.xz linux-e99d7c69fd4c18e7319f8aab8e252b12130796bf.zip |
ASoC: hdmi-codec: make hdmi_codec_controls static
This symbol is not used outside of hdmi-codec.c, so marks it static.
Fix the following sparse warning:
sound/soc/codecs/hdmi-codec.c:750:25: warning: symbol
'hdmi_codec_controls' was not declared. Should it be static?
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Link: https://lore.kernel.org/r/1623822941-3077-1-git-send-email-jiapeng.chong@linux.alibaba.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/hdmi-codec.c')
-rw-r--r-- | sound/soc/codecs/hdmi-codec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/hdmi-codec.c b/sound/soc/codecs/hdmi-codec.c index e0460a9bd17a..b61f980cabdc 100644 --- a/sound/soc/codecs/hdmi-codec.c +++ b/sound/soc/codecs/hdmi-codec.c @@ -747,7 +747,7 @@ static const struct snd_soc_dai_ops hdmi_codec_spdif_dai_ops = { SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE |\ SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE) -struct snd_kcontrol_new hdmi_codec_controls[] = { +static struct snd_kcontrol_new hdmi_codec_controls[] = { { .access = SNDRV_CTL_ELEM_ACCESS_READ, .iface = SNDRV_CTL_ELEM_IFACE_PCM, |