diff options
author | Mark Brown <broonie@kernel.org> | 2023-03-30 00:14:00 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-03-30 00:14:00 +0100 |
commit | 461b56f26119b9fc47a83113a59c05be05e4c6fa (patch) | |
tree | 662dd2bdb57ec2d719f4e169f80ebd797b2ae394 /sound/soc/codecs/lpass-rx-macro.c | |
parent | f769fcefa683e150456555e2a280668509d834df (diff) | |
parent | e3720f92e0237921da537e47a0b24e27899203f8 (diff) |
ASoC: Merge fixes
So they can be used as a basis for new work.
Diffstat (limited to 'sound/soc/codecs/lpass-rx-macro.c')
-rw-r--r-- | sound/soc/codecs/lpass-rx-macro.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/lpass-rx-macro.c b/sound/soc/codecs/lpass-rx-macro.c index 532b19b1980d..685ca95ef4a9 100644 --- a/sound/soc/codecs/lpass-rx-macro.c +++ b/sound/soc/codecs/lpass-rx-macro.c @@ -3688,9 +3688,9 @@ static int __maybe_unused rx_macro_runtime_suspend(struct device *dev) regcache_cache_only(rx->regmap, true); regcache_mark_dirty(rx->regmap); - clk_disable_unprepare(rx->mclk); - clk_disable_unprepare(rx->npl); clk_disable_unprepare(rx->fsgen); + clk_disable_unprepare(rx->npl); + clk_disable_unprepare(rx->mclk); return 0; } |