diff options
author | Mark Brown <broonie@kernel.org> | 2023-09-12 00:38:11 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-09-12 00:38:11 +0300 |
commit | 09d86dbf16fc0fa33ad105c57a72008f575ab307 (patch) | |
tree | 91af491b9a264f4c464f639447c2814cdf4b47be /include/sound | |
parent | 5b772c61eb2c24e58554c5aadd18e94fbdac04cd (diff) | |
parent | 206b250c3e9be44c096bb9bb1f9d6b7f3440bfbb (diff) | |
download | linux-09d86dbf16fc0fa33ad105c57a72008f575ab307.tar.xz |
Improve CS35l41-based audio codec drivers
Merge series from Cristian Ciocaltea <cristian.ciocaltea@collabora.com>:
This patch series contains several fixes and improvements to drivers
based on the CS35l41 audio codec.
It has been verified on Valve's Steam Deck, except the HDA related patches.
Diffstat (limited to 'include/sound')
-rw-r--r-- | include/sound/cs35l41.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sound/cs35l41.h b/include/sound/cs35l41.h index 1bf757901d02..2fe8c6b0d4cf 100644 --- a/include/sound/cs35l41.h +++ b/include/sound/cs35l41.h @@ -11,7 +11,6 @@ #define __CS35L41_H #include <linux/regmap.h> -#include <linux/completion.h> #include <linux/firmware/cirrus/cs_dsp.h> #define CS35L41_FIRSTREG 0x00000000 @@ -902,7 +901,8 @@ int cs35l41_exit_hibernate(struct device *dev, struct regmap *regmap); int cs35l41_init_boost(struct device *dev, struct regmap *regmap, struct cs35l41_hw_cfg *hw_cfg); bool cs35l41_safe_reset(struct regmap *regmap, enum cs35l41_boost_type b_type); +int cs35l41_mdsync_up(struct regmap *regmap); int cs35l41_global_enable(struct device *dev, struct regmap *regmap, enum cs35l41_boost_type b_type, - int enable, struct completion *pll_lock, bool firmware_running); + int enable, bool firmware_running); #endif /* __CS35L41_H */ |