mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 13:41:51 +00:00
ASoC: q6afe-clocks: fix warning on symbol scope
This patch fixes below warning when module is compiled with W=1 C=1
sound/soc/qcom/qdsp6/q6afe-clocks.c:122:18: warning: symbol 'q6afe_clks'
was not declared. Should it be static?
Fixes: 520a1c396d
("ASoC: q6afe-clocks: add q6afe clock controller")
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Link: https://lore.kernel.org/r/20201105114435.22860-1-srinivas.kandagatla@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
4c22b80f61
commit
ee5d28e735
@ -119,7 +119,7 @@ static const struct clk_ops clk_vote_q6afe_ops = {
|
||||
.unprepare = clk_unvote_q6afe_block,
|
||||
};
|
||||
|
||||
struct q6afe_clk *q6afe_clks[Q6AFE_MAX_CLK_ID] = {
|
||||
static struct q6afe_clk *q6afe_clks[Q6AFE_MAX_CLK_ID] = {
|
||||
[LPASS_CLK_ID_PRI_MI2S_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_PRI_MI2S_IBIT),
|
||||
[LPASS_CLK_ID_PRI_MI2S_EBIT] = Q6AFE_CLK(LPASS_CLK_ID_PRI_MI2S_EBIT),
|
||||
[LPASS_CLK_ID_SEC_MI2S_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_SEC_MI2S_IBIT),
|
||||
|
Loading…
Reference in New Issue
Block a user