diff options
author | Stephan Gerhold <stephan@gerhold.net> | 2021-12-14 15:20:46 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-12-23 19:34:23 +0100 |
commit | 3d4641a42ccf1593b3f3a474ee7541727acbb8e0 (patch) | |
tree | fe32898bf6ff2098e4ac6d58601ea3b2fca617f5 /include/sound/soc.h | |
parent | ASoC: More amlogic sound-name-prefix DT fixes (diff) | |
download | linux-3d4641a42ccf1593b3f3a474ee7541727acbb8e0.tar.xz linux-3d4641a42ccf1593b3f3a474ee7541727acbb8e0.zip |
ASoC: core: Add snd_soc_of_parse_pin_switches() from simple-card-utils
The ASoC core already has several helpers to parse card properties
from the device tree. Move the parsing code for "pin-switches" from
simple-card-utils to a shared snd_soc_of_parse_pin_switches() function
so other drivers can also use it to set up pin switches configured in
the device tree.
Cc: Paul Cercueil <paul@crapouillou.net>
Signed-off-by: Stephan Gerhold <stephan@gerhold.net>
Link: https://lore.kernel.org/r/20211214142049.20422-2-stephan@gerhold.net
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/sound/soc.h')
-rw-r--r-- | include/sound/soc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h index 5872a8864f3b..7a1650b303f1 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h @@ -1211,6 +1211,7 @@ int snd_soc_of_parse_card_name(struct snd_soc_card *card, const char *propname); int snd_soc_of_parse_audio_simple_widgets(struct snd_soc_card *card, const char *propname); +int snd_soc_of_parse_pin_switches(struct snd_soc_card *card, const char *prop); int snd_soc_of_get_slot_mask(struct device_node *np, const char *prop_name, unsigned int *mask); |