aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/sound/alsa/soc/codec.txt
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/sound/alsa/soc/codec.txt')
-rw-r--r--Documentation/sound/alsa/soc/codec.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/Documentation/sound/alsa/soc/codec.txt b/Documentation/sound/alsa/soc/codec.txt
index 47b36cb16840..274657a03e1c 100644
--- a/Documentation/sound/alsa/soc/codec.txt
+++ b/Documentation/sound/alsa/soc/codec.txt
@@ -170,11 +170,11 @@ The codec driver also supports the following alsa operations:-
170 170
171/* SoC audio ops */ 171/* SoC audio ops */
172struct snd_soc_ops { 172struct snd_soc_ops {
173 int (*startup)(snd_pcm_substream_t *); 173 int (*startup)(struct snd_pcm_substream *);
174 void (*shutdown)(snd_pcm_substream_t *); 174 void (*shutdown)(struct snd_pcm_substream *);
175 int (*hw_params)(snd_pcm_substream_t *, snd_pcm_hw_params_t *); 175 int (*hw_params)(struct snd_pcm_substream *, struct snd_pcm_hw_params *);
176 int (*hw_free)(snd_pcm_substream_t *); 176 int (*hw_free)(struct snd_pcm_substream *);
177 int (*prepare)(snd_pcm_substream_t *); 177 int (*prepare)(struct snd_pcm_substream *);
178}; 178};
179 179
180Please refer to the alsa driver PCM documentation for details. 180Please refer to the alsa driver PCM documentation for details.