diff options
| author | Mark Brown <broonie@kernel.org> | 2016-11-30 20:23:38 +0300 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2016-11-30 20:23:38 +0300 |
| commit | 19a113ae59c40b20fe23decaa8afef08992396ad (patch) | |
| tree | 9988376ef39f92ed5fdc525a5ce275c824445664 /include | |
| parent | 63079b6e43a813341fc5b44bc899796d5a857fd8 (diff) | |
| parent | 1b4d9c22191583ef1fb7433417b2ceb2a608d887 (diff) | |
| download | linux-19a113ae59c40b20fe23decaa8afef08992396ad.tar.xz | |
Merge branch 'topic/dapm-pin' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into asoc-arizona
Diffstat (limited to 'include')
| -rw-r--r-- | include/sound/soc.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h index 4f1c784e44f6..a26c651cb1ee 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h @@ -1697,4 +1697,24 @@ static inline void snd_soc_dapm_mutex_unlock(struct snd_soc_dapm_context *dapm) mutex_unlock(&dapm->card->dapm_mutex); } +int snd_soc_component_enable_pin(struct snd_soc_component *component, + const char *pin); +int snd_soc_component_enable_pin_unlocked(struct snd_soc_component *component, + const char *pin); +int snd_soc_component_disable_pin(struct snd_soc_component *component, + const char *pin); +int snd_soc_component_disable_pin_unlocked(struct snd_soc_component *component, + const char *pin); +int snd_soc_component_nc_pin(struct snd_soc_component *component, + const char *pin); +int snd_soc_component_nc_pin_unlocked(struct snd_soc_component *component, + const char *pin); +int snd_soc_component_get_pin_status(struct snd_soc_component *component, + const char *pin); +int snd_soc_component_force_enable_pin(struct snd_soc_component *component, + const char *pin); +int snd_soc_component_force_enable_pin_unlocked( + struct snd_soc_component *component, + const char *pin); + #endif |
