diff mbox

[RFC,asoc] ASoC: da7219: da7219_dai_clks_ops can be static

Message ID 20180313081400.GA10404@lkp-ivb-ep02 (mailing list archive)
State Accepted
Commit 1d37ce929c71f430389db3042a8b23536cede1e5
Headers show

Commit Message

Fengguang Wu March 13, 2018, 8:14 a.m. UTC
Fixes: fc8f7ea2d6c0 ("ASoC: da7219: Add common clock usage for providing DAI clks")
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
---
 da7219.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/sound/soc/codecs/da7219.c b/sound/soc/codecs/da7219.c
index 4412159..7e2eabd 100644
--- a/sound/soc/codecs/da7219.c
+++ b/sound/soc/codecs/da7219.c
@@ -1774,7 +1774,7 @@  static int da7219_dai_clks_is_prepared(struct clk_hw *hw)
 	return !!(clk_reg & DA7219_DAI_CLK_EN_MASK);
 }
 
-const struct clk_ops da7219_dai_clks_ops = {
+static const struct clk_ops da7219_dai_clks_ops = {
 	.prepare = da7219_dai_clks_prepare,
 	.unprepare = da7219_dai_clks_unprepare,
 	.is_prepared = da7219_dai_clks_is_prepared,