All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ALSA: Fix spelling typo in Documentation/DocBook/alsa-driver-api.xml
@ 2015-03-04  1:45 Masanari Iida
  2015-03-04  1:47 ` [alsa-devel] " Fabio Estevam
  0 siblings, 1 reply; 4+ messages in thread
From: Masanari Iida @ 2015-03-04  1:45 UTC (permalink / raw)
  To: tiwai, perex, linux-kernel, alsa-devel; +Cc: Masanari Iida

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.
---
 include/sound/compress_driver.h       | 4 ++--
 include/sound/control.h               | 2 +-
 include/sound/soc.h                   | 2 +-
 include/uapi/sound/compress_offload.h | 2 +-
 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 f48089d..ffafda5b 100644
--- a/include/sound/compress_driver.h
+++ b/include/sound/compress_driver.h
@@ -70,7 +70,7 @@ struct snd_compr_runtime {
  * @device: device pointer
  * @direction: stream direction, playback/recording
  * @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
  */
 struct snd_compr_stream {
@@ -95,7 +95,7 @@ struct snd_compr_stream {
  * and the stream properties
  * @get_params: retrieve the codec parameters, mandatory
  * @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.
  * This callback is mandatory
  * @pointer: Retrieve current h/w pointer information. Mandatory
diff --git a/include/sound/control.h b/include/sound/control.h
index 75f3054..95aad6d 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)
  * Add a virtual slave control to the given master.
  * Unlike snd_ctl_add_slave(), the element added via this function
  * 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
  * 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 0d1ade1..cf0bb15 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(
 }
 
 /**
- * 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
  *
  * 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 22ed8cb..e00d8cb 100644
--- a/include/uapi/sound/compress_offload.h
+++ b/include/uapi/sound/compress_offload.h
@@ -75,7 +75,7 @@ struct snd_compr_tstamp {
 /**
  * struct snd_compr_avail - avail descriptor
  * @avail: Number of bytes available in ring buffer for writing/reading
- * @tstamp: timestamp infomation
+ * @tstamp: timestamp information
  */
 struct snd_compr_avail {
 	__u64 avail;
diff --git a/sound/core/pcm_dmaengine.c b/sound/core/pcm_dmaengine.c
index 6542c40..fba365a 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);
  *
  * 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
- * 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,
 	struct dma_chan *chan)
@@ -328,7 +328,7 @@ EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_open);
  * 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
  * 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,
 	dma_filter_fn filter_fn, void *filter_data)
-- 
2.3.1.167.g7f4ba4b


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [alsa-devel] [PATCH] ALSA: Fix spelling typo in Documentation/DocBook/alsa-driver-api.xml
  2015-03-04  1:45 [PATCH] ALSA: Fix spelling typo in Documentation/DocBook/alsa-driver-api.xml Masanari Iida
@ 2015-03-04  1:47 ` Fabio Estevam
  2015-03-04  1:56   ` [PATCH/v2] " Masanari Iida
  0 siblings, 1 reply; 4+ messages in thread
From: Fabio Estevam @ 2015-03-04  1:47 UTC (permalink / raw)
  To: Masanari Iida; +Cc: Takashi Iwai, perex, linux-kernel, alsa-devel

On Tue, Mar 3, 2015 at 10:45 PM, Masanari Iida <standby24x7@gmail.com> wrote:
> 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.
> ---

You missed your Signed-off-by tag.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH/v2] ALSA: Fix spelling typo in Documentation/DocBook/alsa-driver-api.xml
  2015-03-04  1:47 ` [alsa-devel] " Fabio Estevam
@ 2015-03-04  1:56   ` Masanari Iida
  2015-03-04 11:13     ` Takashi Iwai
  0 siblings, 1 reply; 4+ messages in thread
From: Masanari Iida @ 2015-03-04  1:56 UTC (permalink / raw)
  To: tiwai, perex, linux-kernel, alsa-devel; +Cc: Masanari Iida

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>

---
 include/sound/compress_driver.h       | 4 ++--
 include/sound/control.h               | 2 +-
 include/sound/soc.h                   | 2 +-
 include/uapi/sound/compress_offload.h | 2 +-
 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 f48089d..ffafda5b 100644
--- a/include/sound/compress_driver.h
+++ b/include/sound/compress_driver.h
@@ -70,7 +70,7 @@ struct snd_compr_runtime {
  * @device: device pointer
  * @direction: stream direction, playback/recording
  * @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
  */
 struct snd_compr_stream {
@@ -95,7 +95,7 @@ struct snd_compr_stream {
  * and the stream properties
  * @get_params: retrieve the codec parameters, mandatory
  * @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.
  * This callback is mandatory
  * @pointer: Retrieve current h/w pointer information. Mandatory
diff --git a/include/sound/control.h b/include/sound/control.h
index 75f3054..95aad6d 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)
  * Add a virtual slave control to the given master.
  * Unlike snd_ctl_add_slave(), the element added via this function
  * 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
  * 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 0d1ade1..cf0bb15 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(
 }
 
 /**
- * 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
  *
  * 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 22ed8cb..e00d8cb 100644
--- a/include/uapi/sound/compress_offload.h
+++ b/include/uapi/sound/compress_offload.h
@@ -75,7 +75,7 @@ struct snd_compr_tstamp {
 /**
  * struct snd_compr_avail - avail descriptor
  * @avail: Number of bytes available in ring buffer for writing/reading
- * @tstamp: timestamp infomation
+ * @tstamp: timestamp information
  */
 struct snd_compr_avail {
 	__u64 avail;
diff --git a/sound/core/pcm_dmaengine.c b/sound/core/pcm_dmaengine.c
index 6542c40..fba365a 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);
  *
  * 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
- * 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,
 	struct dma_chan *chan)
@@ -328,7 +328,7 @@ EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_open);
  * 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
  * 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,
 	dma_filter_fn filter_fn, void *filter_data)
-- 
2.3.1.167.g7f4ba4b


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH/v2] ALSA: Fix spelling typo in Documentation/DocBook/alsa-driver-api.xml
  2015-03-04  1:56   ` [PATCH/v2] " Masanari Iida
@ 2015-03-04 11:13     ` Takashi Iwai
  0 siblings, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2015-03-04 11:13 UTC (permalink / raw)
  To: Masanari Iida; +Cc: perex, linux-kernel, alsa-devel

At Wed,  4 Mar 2015 10:56:13 +0900,
Masanari Iida wrote:
> 
> 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>

Applied, thanks.


Takashi

> 
> ---
>  include/sound/compress_driver.h       | 4 ++--
>  include/sound/control.h               | 2 +-
>  include/sound/soc.h                   | 2 +-
>  include/uapi/sound/compress_offload.h | 2 +-
>  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 f48089d..ffafda5b 100644
> --- a/include/sound/compress_driver.h
> +++ b/include/sound/compress_driver.h
> @@ -70,7 +70,7 @@ struct snd_compr_runtime {
>   * @device: device pointer
>   * @direction: stream direction, playback/recording
>   * @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
>   */
>  struct snd_compr_stream {
> @@ -95,7 +95,7 @@ struct snd_compr_stream {
>   * and the stream properties
>   * @get_params: retrieve the codec parameters, mandatory
>   * @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.
>   * This callback is mandatory
>   * @pointer: Retrieve current h/w pointer information. Mandatory
> diff --git a/include/sound/control.h b/include/sound/control.h
> index 75f3054..95aad6d 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)
>   * Add a virtual slave control to the given master.
>   * Unlike snd_ctl_add_slave(), the element added via this function
>   * 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
>   * 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 0d1ade1..cf0bb15 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(
>  }
>  
>  /**
> - * 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
>   *
>   * 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 22ed8cb..e00d8cb 100644
> --- a/include/uapi/sound/compress_offload.h
> +++ b/include/uapi/sound/compress_offload.h
> @@ -75,7 +75,7 @@ struct snd_compr_tstamp {
>  /**
>   * struct snd_compr_avail - avail descriptor
>   * @avail: Number of bytes available in ring buffer for writing/reading
> - * @tstamp: timestamp infomation
> + * @tstamp: timestamp information
>   */
>  struct snd_compr_avail {
>  	__u64 avail;
> diff --git a/sound/core/pcm_dmaengine.c b/sound/core/pcm_dmaengine.c
> index 6542c40..fba365a 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);
>   *
>   * 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
> - * 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,
>  	struct dma_chan *chan)
> @@ -328,7 +328,7 @@ EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_open);
>   * 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
>   * 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,
>  	dma_filter_fn filter_fn, void *filter_data)
> -- 
> 2.3.1.167.g7f4ba4b
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-03-04 11:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-04  1:45 [PATCH] ALSA: Fix spelling typo in Documentation/DocBook/alsa-driver-api.xml Masanari Iida
2015-03-04  1:47 ` [alsa-devel] " Fabio Estevam
2015-03-04  1:56   ` [PATCH/v2] " Masanari Iida
2015-03-04 11:13     ` Takashi Iwai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.