diff options
author | Charles Keepax <ckeepax@opensource.cirrus.com> | 2023-05-12 13:28:30 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-05-15 20:11:17 +0900 |
commit | ace9ed54bd874f2c63723b13b1747f6463e2587e (patch) | |
tree | 81ed70a944b8737f980ba418f6b4e89e6978ccc1 /include/sound/soc-component.h | |
parent | 1946dda47c8807517ccaa8caf8ee7de3498db531 (diff) |
ASoC: soc-component: Add notify control helper function
Add a function to allow ASoC drivers to easily notify an ALSA control
change. This function will automatically add any component naming
prefix into the control name.
Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com
Link: https://lore.kernel.org/r/20230512122838.243002-3-ckeepax@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org
Diffstat (limited to 'include/sound/soc-component.h')
-rw-r--r-- | include/sound/soc-component.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sound/soc-component.h b/include/sound/soc-component.h index 0814ed143864..0b47603c9db2 100644 --- a/include/sound/soc-component.h +++ b/include/sound/soc-component.h @@ -454,6 +454,10 @@ int snd_soc_component_force_enable_pin_unlocked( struct snd_soc_component *component, const char *pin); +/* component controls */ +int snd_soc_component_notify_control(struct snd_soc_component *component, + const char * const ctl); + /* component driver ops */ int snd_soc_component_open(struct snd_soc_component *component, struct snd_pcm_substream *substream); |