diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2019-02-16 04:35:56 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-02-19 14:42:49 +0300 |
commit | 76a60f312f64dc48450b15a7f167b46e6230e4d1 (patch) | |
tree | 65459f6af8219417c08722fb491be253325d7718 /sound | |
parent | 8fa857da9744f513036df1c43ab57f338941ae7d (diff) | |
download | linux-76a60f312f64dc48450b15a7f167b46e6230e4d1.tar.xz |
ASoC: wm8741: Make function 'wm8741_mute' static
Fixes the following sparse warning:
sound/soc/codecs/wm8741.c:371:5: warning:
symbol 'wm8741_mute' was not declared. Should it be static?
Fixes: 36b1599340b5 ("ASoC: wm8741: Add digital mute callback")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/wm8741.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm8741.c b/sound/soc/codecs/wm8741.c index a4b8c459ea57..546ea735f534 100644 --- a/sound/soc/codecs/wm8741.c +++ b/sound/soc/codecs/wm8741.c @@ -368,7 +368,7 @@ static int wm8741_set_dai_fmt(struct snd_soc_dai *codec_dai, return 0; } -int wm8741_mute(struct snd_soc_dai *codec_dai, int mute) +static int wm8741_mute(struct snd_soc_dai *codec_dai, int mute) { struct snd_soc_component *component = codec_dai->component; |