aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sound/soc/codecs/lpass-wsa-macro.c
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2023-03-30 00:14:00 +0100
committerMark Brown <broonie@kernel.org>2023-03-30 00:14:00 +0100
commit461b56f26119b9fc47a83113a59c05be05e4c6fa (patch)
tree662dd2bdb57ec2d719f4e169f80ebd797b2ae394 /sound/soc/codecs/lpass-wsa-macro.c
parentASoC: dt-bindings: qcom,lpass-va-macro: Add SM8550 VA macro (diff)
parentASoC: SOF: avoid a NULL dereference with unsupported widgets (diff)
downloadwireguard-linux-461b56f26119b9fc47a83113a59c05be05e4c6fa.tar.xz
wireguard-linux-461b56f26119b9fc47a83113a59c05be05e4c6fa.zip
ASoC: Merge fixes
So they can be used as a basis for new work.
Diffstat (limited to 'sound/soc/codecs/lpass-wsa-macro.c')
-rw-r--r--sound/soc/codecs/lpass-wsa-macro.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/lpass-wsa-macro.c b/sound/soc/codecs/lpass-wsa-macro.c
index 3cbcbfc219b2..8ba7dc89daaa 100644
--- a/sound/soc/codecs/lpass-wsa-macro.c
+++ b/sound/soc/codecs/lpass-wsa-macro.c
@@ -2514,9 +2514,9 @@ static int __maybe_unused wsa_macro_runtime_suspend(struct device *dev)
regcache_cache_only(wsa->regmap, true);
regcache_mark_dirty(wsa->regmap);
- clk_disable_unprepare(wsa->mclk);
- clk_disable_unprepare(wsa->npl);
clk_disable_unprepare(wsa->fsgen);
+ clk_disable_unprepare(wsa->npl);
+ clk_disable_unprepare(wsa->mclk);
return 0;
}