diff options
author | Wei Yongjun <yongjun_wei@trendmicro.com.cn> | 2016-07-08 16:47:01 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-07-14 19:30:46 +0300 |
commit | 25d01dc67894de03de463727633e72e1727b4f6d (patch) | |
tree | fa289162d4327c106104f5961bbec1648b13b845 /sound | |
parent | b02c5cc7239b8f58ba5da24092288dd7a9a56acc (diff) | |
download | linux-25d01dc67894de03de463727633e72e1727b4f6d.tar.xz |
ASoC: mediatek: mt2701: fix non static symbol warning
Fixes the following sparse warning:
sound/soc/mediatek/mt2701/mt2701-afe-pcm.c:72:5: warning:
symbol 'mt2701_dai_num_to_i2s' was not declared. Should it be static?
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: Garlic Tseng <garlic.tseng@mediatek.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/mediatek/mt2701/mt2701-afe-pcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/mediatek/mt2701/mt2701-afe-pcm.c b/sound/soc/mediatek/mt2701/mt2701-afe-pcm.c index 15522c08a967..34a6123480d3 100644 --- a/sound/soc/mediatek/mt2701/mt2701-afe-pcm.c +++ b/sound/soc/mediatek/mt2701/mt2701-afe-pcm.c @@ -69,7 +69,7 @@ static const struct mt2701_afe_rate mt2701_afe_i2s_rates[] = { { .rate = 352800, .regvalue = 24 }, }; -int mt2701_dai_num_to_i2s(struct mtk_base_afe *afe, int num) +static int mt2701_dai_num_to_i2s(struct mtk_base_afe *afe, int num) { int val = num - MT2701_IO_I2S; |