Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 1d37ce92 authored by Colin Ian King's avatar Colin Ian King Committed by Mark Brown
Browse files

ASoC: da7219: make structure da7219_dai_clks_ops static



structure da7219_dai_clks_ops is local to the source and does not need
to be in global scope, so make it static.

Cleans up sparse warning:
sound/soc/codecs/da7219.c:1777:22: warning: symbol 'da7219_dai_clks_ops'
was not declared. Should it be static?

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 0f9d0e35
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,