diff options
author | Takashi Iwai <tiwai@suse.de> | 2024-02-29 08:29:04 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2024-02-29 08:29:04 +0100 |
commit | 17c6a0c986fbea2c09010c39ef4b44334f06e390 (patch) | |
tree | 8e337e8d1c806b71db98de14c67ee7225dd744b9 /include | |
parent | b34bf65838f7c6e785f62681605a538b73c2808c (diff) | |
parent | ed00a6945dc32462c2d3744a3518d2316da66fcc (diff) |
Merge tag 'asoc-fix-v6.8-rc5' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Fixes for v6.8
A few small fixes, some driver specific and one slightly larger one
from Richard which adds a new core helper and updates a small clutch of
drivers to deal with the fact that they were using a helper which
requires that the lock for the list of controls without holding that
lock. We also have some quirks for new AMD based Lenovo systems.
Diffstat (limited to 'include')
-rw-r--r-- | include/sound/soc-card.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sound/soc-card.h b/include/sound/soc-card.h index ecc02e955279..1f4c39922d82 100644 --- a/include/sound/soc-card.h +++ b/include/sound/soc-card.h @@ -30,6 +30,8 @@ static inline void snd_soc_card_mutex_unlock(struct snd_soc_card *card) struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card, const char *name); +struct snd_kcontrol *snd_soc_card_get_kcontrol_locked(struct snd_soc_card *soc_card, + const char *name); int snd_soc_card_jack_new(struct snd_soc_card *card, const char *id, int type, struct snd_soc_jack *jack); int snd_soc_card_jack_new_pins(struct snd_soc_card *card, const char *id, |