diff options
| author | Takashi Iwai <tiwai@suse.de> | 2014-01-20 09:48:55 -0500 |
|---|---|---|
| committer | Takashi Iwai <tiwai@suse.de> | 2014-01-20 09:48:55 -0500 |
| commit | 7552f34a790069a008bd3e2ab4c0954b30c2f63b (patch) | |
| tree | d51ab23d4d59248c969c25bb2fc14f45158ff5ae /include | |
| parent | 258753361534a40ad7180c742da813fc659e427b (diff) | |
| parent | ac6d7c48e3a5e82e876114b9ca0b489e96997743 (diff) | |
Merge tag 'asoc-v3.14-3' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Last updates for the merge window
A couple more fixes plus some extensions to DPCM for use with compressed
audio from Liam which arrived just after my previous pull request.
Diffstat (limited to 'include')
| -rw-r--r-- | include/sound/soc-dpcm.h | 22 | ||||
| -rw-r--r-- | include/sound/soc.h | 1 |
2 files changed, 23 insertions, 0 deletions
diff --git a/include/sound/soc-dpcm.h b/include/sound/soc-dpcm.h index 047d657c331c..2883a7a6f9f3 100644 --- a/include/sound/soc-dpcm.h +++ b/include/sound/soc-dpcm.h | |||
| @@ -11,6 +11,7 @@ | |||
| 11 | #ifndef __LINUX_SND_SOC_DPCM_H | 11 | #ifndef __LINUX_SND_SOC_DPCM_H |
| 12 | #define __LINUX_SND_SOC_DPCM_H | 12 | #define __LINUX_SND_SOC_DPCM_H |
| 13 | 13 | ||
| 14 | #include <linux/slab.h> | ||
| 14 | #include <linux/list.h> | 15 | #include <linux/list.h> |
| 15 | #include <sound/pcm.h> | 16 | #include <sound/pcm.h> |
| 16 | 17 | ||
| @@ -135,4 +136,25 @@ int soc_dpcm_be_digital_mute(struct snd_soc_pcm_runtime *fe, int mute); | |||
| 135 | int soc_dpcm_debugfs_add(struct snd_soc_pcm_runtime *rtd); | 136 | int soc_dpcm_debugfs_add(struct snd_soc_pcm_runtime *rtd); |
| 136 | int soc_dpcm_runtime_update(struct snd_soc_card *); | 137 | int soc_dpcm_runtime_update(struct snd_soc_card *); |
| 137 | 138 | ||
| 139 | int dpcm_path_get(struct snd_soc_pcm_runtime *fe, | ||
| 140 | int stream, struct snd_soc_dapm_widget_list **list_); | ||
| 141 | int dpcm_process_paths(struct snd_soc_pcm_runtime *fe, | ||
| 142 | int stream, struct snd_soc_dapm_widget_list **list, int new); | ||
| 143 | int dpcm_be_dai_startup(struct snd_soc_pcm_runtime *fe, int stream); | ||
| 144 | int dpcm_be_dai_shutdown(struct snd_soc_pcm_runtime *fe, int stream); | ||
| 145 | void dpcm_be_disconnect(struct snd_soc_pcm_runtime *fe, int stream); | ||
| 146 | void dpcm_clear_pending_state(struct snd_soc_pcm_runtime *fe, int stream); | ||
| 147 | int dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime *fe, int stream); | ||
| 148 | int dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime *fe, int tream); | ||
| 149 | int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime *fe, int stream, int cmd); | ||
| 150 | int dpcm_be_dai_prepare(struct snd_soc_pcm_runtime *fe, int stream); | ||
| 151 | int dpcm_dapm_stream_event(struct snd_soc_pcm_runtime *fe, int dir, | ||
| 152 | int event); | ||
| 153 | |||
| 154 | static inline void dpcm_path_put(struct snd_soc_dapm_widget_list **list) | ||
| 155 | { | ||
| 156 | kfree(*list); | ||
| 157 | } | ||
| 158 | |||
| 159 | |||
| 138 | #endif | 160 | #endif |
diff --git a/include/sound/soc.h b/include/sound/soc.h index 03ce45bf8ade..9a001472b96a 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h | |||
| @@ -1042,6 +1042,7 @@ struct snd_soc_pcm_runtime { | |||
| 1042 | 1042 | ||
| 1043 | /* Dynamic PCM BE runtime data */ | 1043 | /* Dynamic PCM BE runtime data */ |
| 1044 | struct snd_soc_dpcm_runtime dpcm[2]; | 1044 | struct snd_soc_dpcm_runtime dpcm[2]; |
| 1045 | int fe_compr; | ||
| 1045 | 1046 | ||
| 1046 | long pmdown_time; | 1047 | long pmdown_time; |
| 1047 | unsigned char pop_wait:1; | 1048 | unsigned char pop_wait:1; |
