diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2015-07-27 04:56:24 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-07-29 10:05:34 -0400 |
commit | eccad574ef2d74e7519a092d9822932a27c6f165 (patch) | |
tree | 89ca2cddae267089b67d3f409e7a680ba291df97 /sound/soc/qcom | |
parent | 7f005256f70a8c1c60b2f8a7449137da0c5e5bd9 (diff) |
ASoC: lpass-ipq806x: Staticise local symbols
ipq806x_data is not used outside this file, so it can be static.
Fixes the following sparse warning:
sound/soc/qcom/lpass-ipq806x.c:76:22: warning: symbol 'ipq806x_data'
was not declared. Should it be static?
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Acked-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/qcom')
-rw-r--r-- | sound/soc/qcom/lpass-ipq806x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/qcom/lpass-ipq806x.c b/sound/soc/qcom/lpass-ipq806x.c index 7356d3a766d6..7a4167952711 100644 --- a/sound/soc/qcom/lpass-ipq806x.c +++ b/sound/soc/qcom/lpass-ipq806x.c | |||
@@ -73,7 +73,7 @@ static int ipq806x_lpass_free_dma_channel(struct lpass_data *drvdata, int chan) | |||
73 | return 0; | 73 | return 0; |
74 | } | 74 | } |
75 | 75 | ||
76 | struct lpass_variant ipq806x_data = { | 76 | static struct lpass_variant ipq806x_data = { |
77 | .i2sctrl_reg_base = 0x0010, | 77 | .i2sctrl_reg_base = 0x0010, |
78 | .i2sctrl_reg_stride = 0x04, | 78 | .i2sctrl_reg_stride = 0x04, |
79 | .i2s_ports = 5, | 79 | .i2s_ports = 5, |