diff options
author | Masanari Iida <standby24x7@gmail.com> | 2015-03-03 20:56:13 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-03-04 06:12:59 -0500 |
commit | 1a6ab46fa9c2bc9399694b4856ab7ea19c036485 (patch) | |
tree | 6dc323543e0e65e15c9e1ed3d82874d0b82b5749 | |
parent | 9603cded0e2cef003a822985d84b5daff1c7232f (diff) |
ALSA: Fix spelling typo in Documentation/DocBook/alsa-driver-api.xml
This patch fix spelling typo found in alsa-driver-api.xml.
It is because this file is generated from comments in source files,
I have to fix source files.
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | include/sound/compress_driver.h | 4 | ||||
-rw-r--r-- | include/sound/control.h | 2 | ||||
-rw-r--r-- | include/sound/soc.h | 2 | ||||
-rw-r--r-- | include/uapi/sound/compress_offload.h | 2 | ||||
-rw-r--r-- | sound/core/pcm_dmaengine.c | 4 |
5 files changed, 7 insertions, 7 deletions
diff --git a/include/sound/compress_driver.h b/include/sound/compress_driver.h index f48089d364c5..fa1d05512c09 100644 --- a/include/sound/compress_driver.h +++ b/include/sound/compress_driver.h | |||
@@ -70,7 +70,7 @@ struct snd_compr_runtime { | |||
70 | * @device: device pointer | 70 | * @device: device pointer |
71 | * @direction: stream direction, playback/recording | 71 | * @direction: stream direction, playback/recording |
72 | * @metadata_set: metadata set flag, true when set | 72 | * @metadata_set: metadata set flag, true when set |
73 | * @next_track: has userspace signall next track transistion, true when set | 73 | * @next_track: has userspace signal next track transition, true when set |
74 | * @private_data: pointer to DSP private data | 74 | * @private_data: pointer to DSP private data |
75 | */ | 75 | */ |
76 | struct snd_compr_stream { | 76 | struct snd_compr_stream { |
@@ -95,7 +95,7 @@ struct snd_compr_stream { | |||
95 | * and the stream properties | 95 | * and the stream properties |
96 | * @get_params: retrieve the codec parameters, mandatory | 96 | * @get_params: retrieve the codec parameters, mandatory |
97 | * @set_metadata: Set the metadata values for a stream | 97 | * @set_metadata: Set the metadata values for a stream |
98 | * @get_metadata: retreives the requested metadata values from stream | 98 | * @get_metadata: retrieves the requested metadata values from stream |
99 | * @trigger: Trigger operations like start, pause, resume, drain, stop. | 99 | * @trigger: Trigger operations like start, pause, resume, drain, stop. |
100 | * This callback is mandatory | 100 | * This callback is mandatory |
101 | * @pointer: Retrieve current h/w pointer information. Mandatory | 101 | * @pointer: Retrieve current h/w pointer information. Mandatory |
diff --git a/include/sound/control.h b/include/sound/control.h index 75f3054023f7..95aad6d3fd1a 100644 --- a/include/sound/control.h +++ b/include/sound/control.h | |||
@@ -227,7 +227,7 @@ snd_ctl_add_slave(struct snd_kcontrol *master, struct snd_kcontrol *slave) | |||
227 | * Add a virtual slave control to the given master. | 227 | * Add a virtual slave control to the given master. |
228 | * Unlike snd_ctl_add_slave(), the element added via this function | 228 | * Unlike snd_ctl_add_slave(), the element added via this function |
229 | * is supposed to have volatile values, and get callback is called | 229 | * is supposed to have volatile values, and get callback is called |
230 | * at each time quried from the master. | 230 | * at each time queried from the master. |
231 | * | 231 | * |
232 | * When the control peeks the hardware values directly and the value | 232 | * When the control peeks the hardware values directly and the value |
233 | * can be changed by other means than the put callback of the element, | 233 | * can be changed by other means than the put callback of the element, |
diff --git a/include/sound/soc.h b/include/sound/soc.h index 0d1ade195628..cf0bb156d6da 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h | |||
@@ -1469,7 +1469,7 @@ static inline struct snd_soc_codec *snd_soc_kcontrol_codec( | |||
1469 | } | 1469 | } |
1470 | 1470 | ||
1471 | /** | 1471 | /** |
1472 | * snd_soc_kcontrol_platform() - Returns the platform that registerd the control | 1472 | * snd_soc_kcontrol_platform() - Returns the platform that registered the control |
1473 | * @kcontrol: The control for which to get the platform | 1473 | * @kcontrol: The control for which to get the platform |
1474 | * | 1474 | * |
1475 | * Note: This function will only work correctly if the control has been | 1475 | * Note: This function will only work correctly if the control has been |
diff --git a/include/uapi/sound/compress_offload.h b/include/uapi/sound/compress_offload.h index 22ed8cb7800b..e00d8cbfc628 100644 --- a/include/uapi/sound/compress_offload.h +++ b/include/uapi/sound/compress_offload.h | |||
@@ -75,7 +75,7 @@ struct snd_compr_tstamp { | |||
75 | /** | 75 | /** |
76 | * struct snd_compr_avail - avail descriptor | 76 | * struct snd_compr_avail - avail descriptor |
77 | * @avail: Number of bytes available in ring buffer for writing/reading | 77 | * @avail: Number of bytes available in ring buffer for writing/reading |
78 | * @tstamp: timestamp infomation | 78 | * @tstamp: timestamp information |
79 | */ | 79 | */ |
80 | struct snd_compr_avail { | 80 | struct snd_compr_avail { |
81 | __u64 avail; | 81 | __u64 avail; |
diff --git a/sound/core/pcm_dmaengine.c b/sound/core/pcm_dmaengine.c index 6542c4083594..fba365a78390 100644 --- a/sound/core/pcm_dmaengine.c +++ b/sound/core/pcm_dmaengine.c | |||
@@ -289,7 +289,7 @@ EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_request_channel); | |||
289 | * | 289 | * |
290 | * The function should usually be called from the pcm open callback. Note that | 290 | * The function should usually be called from the pcm open callback. Note that |
291 | * this function will use private_data field of the substream's runtime. So it | 291 | * this function will use private_data field of the substream's runtime. So it |
292 | * is not availabe to your pcm driver implementation. | 292 | * is not available to your pcm driver implementation. |
293 | */ | 293 | */ |
294 | int snd_dmaengine_pcm_open(struct snd_pcm_substream *substream, | 294 | int snd_dmaengine_pcm_open(struct snd_pcm_substream *substream, |
295 | struct dma_chan *chan) | 295 | struct dma_chan *chan) |
@@ -328,7 +328,7 @@ EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_open); | |||
328 | * This function will request a DMA channel using the passed filter function and | 328 | * This function will request a DMA channel using the passed filter function and |
329 | * data. The function should usually be called from the pcm open callback. Note | 329 | * data. The function should usually be called from the pcm open callback. Note |
330 | * that this function will use private_data field of the substream's runtime. So | 330 | * that this function will use private_data field of the substream's runtime. So |
331 | * it is not availabe to your pcm driver implementation. | 331 | * it is not available to your pcm driver implementation. |
332 | */ | 332 | */ |
333 | int snd_dmaengine_pcm_open_request_chan(struct snd_pcm_substream *substream, | 333 | int snd_dmaengine_pcm_open_request_chan(struct snd_pcm_substream *substream, |
334 | dma_filter_fn filter_fn, void *filter_data) | 334 | dma_filter_fn filter_fn, void *filter_data) |