diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2018-03-29 02:14:03 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-04-16 18:00:30 +0100 |
commit | ede1d3534f589d69b381e8509f3d01ec1e23c804 (patch) | |
tree | 8c6b3fb74989729d1772ed3743b01ce1ad18e1c0 /sound/soc/amd | |
parent | e590522a06adce8ca2eb47e77d80616cd1542d91 (diff) |
ASoC: amd: acp-da7219-max98357: Make symbol da7219_dai_clk static
Fixes the following sparse warning:
sound/soc/amd/acp-da7219-max98357a.c:46:12: warning:
symbol 'da7219_dai_clk' was not declared. Should it be static?
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/amd')
-rw-r--r-- | sound/soc/amd/acp-da7219-max98357a.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/amd/acp-da7219-max98357a.c b/sound/soc/amd/acp-da7219-max98357a.c index d281c227d64c..215b06bf2039 100644 --- a/sound/soc/amd/acp-da7219-max98357a.c +++ b/sound/soc/amd/acp-da7219-max98357a.c @@ -44,7 +44,7 @@ #define DUAL_CHANNEL 2 static struct snd_soc_jack cz_jack; -struct clk *da7219_dai_clk; +static struct clk *da7219_dai_clk; static int cz_da7219_init(struct snd_soc_pcm_runtime *rtd) { |