Commit 1a6ab46f authored by Masanari Iida's avatar Masanari Iida Committed by Takashi Iwai

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: default avatarMasanari Iida <standby24x7@gmail.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 9603cded
...@@ -70,7 +70,7 @@ struct snd_compr_runtime { ...@@ -70,7 +70,7 @@ struct snd_compr_runtime {
* @device: device pointer * @device: device pointer
* @direction: stream direction, playback/recording * @direction: stream direction, playback/recording
* @metadata_set: metadata set flag, true when set * @metadata_set: metadata set flag, true when set
* @next_track: has userspace signall next track transistion, true when set * @next_track: has userspace signal next track transition, true when set
* @private_data: pointer to DSP private data * @private_data: pointer to DSP private data
*/ */
struct snd_compr_stream { struct snd_compr_stream {
...@@ -95,7 +95,7 @@ struct snd_compr_stream { ...@@ -95,7 +95,7 @@ struct snd_compr_stream {
* and the stream properties * and the stream properties
* @get_params: retrieve the codec parameters, mandatory * @get_params: retrieve the codec parameters, mandatory
* @set_metadata: Set the metadata values for a stream * @set_metadata: Set the metadata values for a stream
* @get_metadata: retreives the requested metadata values from stream * @get_metadata: retrieves the requested metadata values from stream
* @trigger: Trigger operations like start, pause, resume, drain, stop. * @trigger: Trigger operations like start, pause, resume, drain, stop.
* This callback is mandatory * This callback is mandatory
* @pointer: Retrieve current h/w pointer information. Mandatory * @pointer: Retrieve current h/w pointer information. Mandatory
......
...@@ -227,7 +227,7 @@ snd_ctl_add_slave(struct snd_kcontrol *master, struct snd_kcontrol *slave) ...@@ -227,7 +227,7 @@ snd_ctl_add_slave(struct snd_kcontrol *master, struct snd_kcontrol *slave)
* Add a virtual slave control to the given master. * Add a virtual slave control to the given master.
* Unlike snd_ctl_add_slave(), the element added via this function * Unlike snd_ctl_add_slave(), the element added via this function
* is supposed to have volatile values, and get callback is called * is supposed to have volatile values, and get callback is called
* at each time quried from the master. * at each time queried from the master.
* *
* When the control peeks the hardware values directly and the value * When the control peeks the hardware values directly and the value
* can be changed by other means than the put callback of the element, * can be changed by other means than the put callback of the element,
......
...@@ -1469,7 +1469,7 @@ static inline struct snd_soc_codec *snd_soc_kcontrol_codec( ...@@ -1469,7 +1469,7 @@ static inline struct snd_soc_codec *snd_soc_kcontrol_codec(
} }
/** /**
* snd_soc_kcontrol_platform() - Returns the platform that registerd the control * snd_soc_kcontrol_platform() - Returns the platform that registered the control
* @kcontrol: The control for which to get the platform * @kcontrol: The control for which to get the platform
* *
* Note: This function will only work correctly if the control has been * Note: This function will only work correctly if the control has been
......
...@@ -75,7 +75,7 @@ struct snd_compr_tstamp { ...@@ -75,7 +75,7 @@ struct snd_compr_tstamp {
/** /**
* struct snd_compr_avail - avail descriptor * struct snd_compr_avail - avail descriptor
* @avail: Number of bytes available in ring buffer for writing/reading * @avail: Number of bytes available in ring buffer for writing/reading
* @tstamp: timestamp infomation * @tstamp: timestamp information
*/ */
struct snd_compr_avail { struct snd_compr_avail {
__u64 avail; __u64 avail;
......
...@@ -289,7 +289,7 @@ EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_request_channel); ...@@ -289,7 +289,7 @@ EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_request_channel);
* *
* The function should usually be called from the pcm open callback. Note that * The function should usually be called from the pcm open callback. Note that
* this function will use private_data field of the substream's runtime. So it * this function will use private_data field of the substream's runtime. So it
* is not availabe to your pcm driver implementation. * is not available to your pcm driver implementation.
*/ */
int snd_dmaengine_pcm_open(struct snd_pcm_substream *substream, int snd_dmaengine_pcm_open(struct snd_pcm_substream *substream,
struct dma_chan *chan) struct dma_chan *chan)
...@@ -328,7 +328,7 @@ EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_open); ...@@ -328,7 +328,7 @@ EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_open);
* This function will request a DMA channel using the passed filter function and * This function will request a DMA channel using the passed filter function and
* data. The function should usually be called from the pcm open callback. Note * data. The function should usually be called from the pcm open callback. Note
* that this function will use private_data field of the substream's runtime. So * that this function will use private_data field of the substream's runtime. So
* it is not availabe to your pcm driver implementation. * it is not available to your pcm driver implementation.
*/ */
int snd_dmaengine_pcm_open_request_chan(struct snd_pcm_substream *substream, int snd_dmaengine_pcm_open_request_chan(struct snd_pcm_substream *substream,
dma_filter_fn filter_fn, void *filter_data) dma_filter_fn filter_fn, void *filter_data)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment