Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Masanari Iida and committed by
Takashi Iwai
1a6ab46f 9603cded

+7 -7
+2 -2
include/sound/compress_driver.h
··· 70 70 * @device: device pointer 71 71 * @direction: stream direction, playback/recording 72 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 74 * @private_data: pointer to DSP private data 75 75 */ 76 76 struct snd_compr_stream { ··· 95 95 * and the stream properties 96 96 * @get_params: retrieve the codec parameters, mandatory 97 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 99 * @trigger: Trigger operations like start, pause, resume, drain, stop. 100 100 * This callback is mandatory 101 101 * @pointer: Retrieve current h/w pointer information. Mandatory
+1 -1
include/sound/control.h
··· 227 227 * Add a virtual slave control to the given master. 228 228 * Unlike snd_ctl_add_slave(), the element added via this function 229 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 232 * When the control peeks the hardware values directly and the value 233 233 * can be changed by other means than the put callback of the element,
+1 -1
include/sound/soc.h
··· 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 1473 * @kcontrol: The control for which to get the platform 1474 1474 * 1475 1475 * Note: This function will only work correctly if the control has been
+1 -1
include/uapi/sound/compress_offload.h
··· 75 75 /** 76 76 * struct snd_compr_avail - avail descriptor 77 77 * @avail: Number of bytes available in ring buffer for writing/reading 78 - * @tstamp: timestamp infomation 78 + * @tstamp: timestamp information 79 79 */ 80 80 struct snd_compr_avail { 81 81 __u64 avail;
+2 -2
sound/core/pcm_dmaengine.c
··· 289 289 * 290 290 * The function should usually be called from the pcm open callback. Note that 291 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 294 int snd_dmaengine_pcm_open(struct snd_pcm_substream *substream, 295 295 struct dma_chan *chan) ··· 328 328 * This function will request a DMA channel using the passed filter function and 329 329 * data. The function should usually be called from the pcm open callback. Note 330 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 333 int snd_dmaengine_pcm_open_request_chan(struct snd_pcm_substream *substream, 334 334 dma_filter_fn filter_fn, void *filter_data)