Changeset 695 for GPL/trunk/alsa-kernel/include/sound/soc-dpcm.h
- Timestamp:
- Aug 21, 2021, 3:35:34 AM (4 years ago)
- Location:
- GPL/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk
- Property svn:mergeinfo changed
/GPL/branches/uniaud32-next merged: 691-694
- Property svn:mergeinfo changed
-
GPL/trunk/alsa-kernel/include/sound/soc-dpcm.h
r679 r695 150 150 int stream, struct snd_soc_dapm_widget_list **list, int new); 151 151 int dpcm_be_dai_startup(struct snd_soc_pcm_runtime *fe, int stream); 152 int dpcm_be_dai_shutdown(struct snd_soc_pcm_runtime *fe, int stream); 152 void dpcm_be_dai_stop(struct snd_soc_pcm_runtime *fe, int stream, 153 int do_hw_free, struct snd_soc_dpcm *last); 153 154 void dpcm_be_disconnect(struct snd_soc_pcm_runtime *fe, int stream); 154 155 void dpcm_clear_pending_state(struct snd_soc_pcm_runtime *fe, int stream); 155 intdpcm_be_dai_hw_free(struct snd_soc_pcm_runtime *fe, int stream);156 void dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime *fe, int stream); 156 157 int dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime *fe, int tream); 157 158 int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime *fe, int stream, int cmd); … … 160 161 int event); 161 162 163 #define dpcm_be_dai_startup_rollback(fe, stream, last) \ 164 dpcm_be_dai_stop(fe, stream, 0, last) 165 #define dpcm_be_dai_startup_unwind(fe, stream) dpcm_be_dai_stop(fe, stream, 0, NULL) 166 #define dpcm_be_dai_shutdown(fe, stream) dpcm_be_dai_stop(fe, stream, 1, NULL) 167 162 168 #endif
Note:
See TracChangeset
for help on using the changeset viewer.