Commit 7cc24b16 authored by kbuild test robot's avatar kbuild test robot Committed by Mark Brown

ASoC: qcom: ipq806x_lpass_alloc_dma_channel() can be static

Signed-off-by: default avatarFengguang Wu <fengguang.wu@intel.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 6db1c6ba
...@@ -63,12 +63,12 @@ static struct snd_soc_dai_driver ipq806x_lpass_cpu_dai_driver = { ...@@ -63,12 +63,12 @@ static struct snd_soc_dai_driver ipq806x_lpass_cpu_dai_driver = {
.ops = &asoc_qcom_lpass_cpu_dai_ops, .ops = &asoc_qcom_lpass_cpu_dai_ops,
}; };
int ipq806x_lpass_alloc_dma_channel(struct lpass_data *drvdata) static int ipq806x_lpass_alloc_dma_channel(struct lpass_data *drvdata)
{ {
return IPQ806X_LPAIF_RDMA_CHAN_MI2S; return IPQ806X_LPAIF_RDMA_CHAN_MI2S;
} }
int ipq806x_lpass_free_dma_channel(struct lpass_data *drvdata, int chan) static int ipq806x_lpass_free_dma_channel(struct lpass_data *drvdata, int chan)
{ {
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment