All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] treewide: Fix typo in Documentation/DocBook/device-drivers
@ 2014-10-21 15:00 Masanari Iida
  2014-10-21 22:12 ` Randy Dunlap
  2014-10-22 15:49 ` Jonathan Corbet
  0 siblings, 2 replies; 4+ messages in thread
From: Masanari Iida @ 2014-10-21 15:00 UTC (permalink / raw)
  To: trivial, corbet, rdunlap, linux-kernel; +Cc: Masanari Iida

This patch fix speeling typo found in html files within
Documentation/DocBook/device-drivers.
It is because html files are generated from comments in source,
so I have to fix comments in the source.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
---
 drivers/dma-buf/fence.c | 2 +-
 include/linux/fence.h   | 4 ++--
 include/linux/i2c.h     | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/dma-buf/fence.c b/drivers/dma-buf/fence.c
index 7bb9d65..e554111 100644
--- a/drivers/dma-buf/fence.c
+++ b/drivers/dma-buf/fence.c
@@ -283,7 +283,7 @@ EXPORT_SYMBOL(fence_add_callback);
  * @cb:		[in]	the callback to remove
  *
  * Remove a previously queued callback from the fence. This function returns
- * true if the callback is succesfully removed, or false if the fence has
+ * true if the callback is successfully removed, or false if the fence has
  * already been signaled.
  *
  * *WARNING*:
diff --git a/include/linux/fence.h b/include/linux/fence.h
index d174585..39efee1 100644
--- a/include/linux/fence.h
+++ b/include/linux/fence.h
@@ -128,8 +128,8 @@ struct fence_cb {
  * from irq context, so normal spinlocks can be used.
  *
  * A return value of false indicates the fence already passed,
- * or some failure occured that made it impossible to enable
- * signaling. True indicates succesful enabling.
+ * or some failure occurred that made it impossible to enable
+ * signaling. True indicates successful enabling.
  *
  * fence->status may be set in enable_signaling, but only when false is
  * returned.
diff --git a/include/linux/i2c.h b/include/linux/i2c.h
index b556e0a..70ee0d3 100644
--- a/include/linux/i2c.h
+++ b/include/linux/i2c.h
@@ -359,7 +359,7 @@ i2c_register_board_info(int busnum, struct i2c_board_info const *info,
  * to name two of the most common.
  *
  * The return codes from the @master_xfer field should indicate the type of
- * error code that occured during the transfer, as documented in the kernel
+ * error code that occurred during the transfer, as documented in the kernel
  * Documentation file Documentation/i2c/fault-codes.
  */
 struct i2c_algorithm {
-- 
2.1.2.451.g98349e5


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

* Re: [PATCH] treewide: Fix typo in Documentation/DocBook/device-drivers
  2014-10-21 15:00 [PATCH] treewide: Fix typo in Documentation/DocBook/device-drivers Masanari Iida
@ 2014-10-21 22:12 ` Randy Dunlap
  2014-10-22 15:49 ` Jonathan Corbet
  1 sibling, 0 replies; 4+ messages in thread
From: Randy Dunlap @ 2014-10-21 22:12 UTC (permalink / raw)
  To: Masanari Iida, trivial, corbet, linux-kernel

On 10/21/14 08:00, Masanari Iida wrote:
> This patch fix speeling typo found in html files within
> Documentation/DocBook/device-drivers.
> It is because html files are generated from comments in source,
> so I have to fix comments in the source.
> 
> Signed-off-by: Masanari Iida <standby24x7@gmail.com>

Acked-by: Randy Dunlap <rdunlap@infradead.org>

Thanks.

> ---
>  drivers/dma-buf/fence.c | 2 +-
>  include/linux/fence.h   | 4 ++--
>  include/linux/i2c.h     | 2 +-
>  3 files changed, 4 insertions(+), 4 deletions(-)


-- 
~Randy

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

* Re: [PATCH] treewide: Fix typo in Documentation/DocBook/device-drivers
  2014-10-21 15:00 [PATCH] treewide: Fix typo in Documentation/DocBook/device-drivers Masanari Iida
  2014-10-21 22:12 ` Randy Dunlap
@ 2014-10-22 15:49 ` Jonathan Corbet
  2014-10-22 15:55   ` Wolfram Sang
  1 sibling, 1 reply; 4+ messages in thread
From: Jonathan Corbet @ 2014-10-22 15:49 UTC (permalink / raw)
  To: Masanari Iida; +Cc: trivial, rdunlap, linux-kernel, Sumit Semwal, Wolfram Sang

On Wed, 22 Oct 2014 00:00:14 +0900
Masanari Iida <standby24x7@gmail.com> wrote:

> This patch fix speeling typo found in html files within
> Documentation/DocBook/device-drivers.
> It is because html files are generated from comments in source,
> so I have to fix comments in the source.
> 
> Signed-off-by: Masanari Iida <standby24x7@gmail.com>

I can pick this up, I guess.  But I'll copy the relevant subsystem
maintainers just in case they would rather carry the changes themselves.

jon

> ---
>  drivers/dma-buf/fence.c | 2 +-
>  include/linux/fence.h   | 4 ++--
>  include/linux/i2c.h     | 2 +-
>  3 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/dma-buf/fence.c b/drivers/dma-buf/fence.c
> index 7bb9d65..e554111 100644
> --- a/drivers/dma-buf/fence.c
> +++ b/drivers/dma-buf/fence.c
> @@ -283,7 +283,7 @@ EXPORT_SYMBOL(fence_add_callback);
>   * @cb:		[in]	the callback to remove
>   *
>   * Remove a previously queued callback from the fence. This function returns
> - * true if the callback is succesfully removed, or false if the fence has
> + * true if the callback is successfully removed, or false if the fence has
>   * already been signaled.
>   *
>   * *WARNING*:
> diff --git a/include/linux/fence.h b/include/linux/fence.h
> index d174585..39efee1 100644
> --- a/include/linux/fence.h
> +++ b/include/linux/fence.h
> @@ -128,8 +128,8 @@ struct fence_cb {
>   * from irq context, so normal spinlocks can be used.
>   *
>   * A return value of false indicates the fence already passed,
> - * or some failure occured that made it impossible to enable
> - * signaling. True indicates succesful enabling.
> + * or some failure occurred that made it impossible to enable
> + * signaling. True indicates successful enabling.
>   *
>   * fence->status may be set in enable_signaling, but only when false is
>   * returned.
> diff --git a/include/linux/i2c.h b/include/linux/i2c.h
> index b556e0a..70ee0d3 100644
> --- a/include/linux/i2c.h
> +++ b/include/linux/i2c.h
> @@ -359,7 +359,7 @@ i2c_register_board_info(int busnum, struct i2c_board_info const *info,
>   * to name two of the most common.
>   *
>   * The return codes from the @master_xfer field should indicate the type of
> - * error code that occured during the transfer, as documented in the kernel
> + * error code that occurred during the transfer, as documented in the kernel
>   * Documentation file Documentation/i2c/fault-codes.
>   */
>  struct i2c_algorithm {

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

* Re: [PATCH] treewide: Fix typo in Documentation/DocBook/device-drivers
  2014-10-22 15:49 ` Jonathan Corbet
@ 2014-10-22 15:55   ` Wolfram Sang
  0 siblings, 0 replies; 4+ messages in thread
From: Wolfram Sang @ 2014-10-22 15:55 UTC (permalink / raw)
  To: Jonathan Corbet
  Cc: Masanari Iida, trivial, rdunlap, linux-kernel, Sumit Semwal

[-- Attachment #1: Type: text/plain, Size: 649 bytes --]

On Wed, Oct 22, 2014 at 11:49:17AM -0400, Jonathan Corbet wrote:
> On Wed, 22 Oct 2014 00:00:14 +0900
> Masanari Iida <standby24x7@gmail.com> wrote:
> 
> > This patch fix speeling typo found in html files within
> > Documentation/DocBook/device-drivers.
> > It is because html files are generated from comments in source,
> > so I have to fix comments in the source.
> > 
> > Signed-off-by: Masanari Iida <standby24x7@gmail.com>
> 
> I can pick this up, I guess.  But I'll copy the relevant subsystem
> maintainers just in case they would rather carry the changes themselves.

For I2C:

Acked-by: Wolfram Sang <wsa@the-dreams.de>


[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

end of thread, other threads:[~2014-10-22 15:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-10-21 15:00 [PATCH] treewide: Fix typo in Documentation/DocBook/device-drivers Masanari Iida
2014-10-21 22:12 ` Randy Dunlap
2014-10-22 15:49 ` Jonathan Corbet
2014-10-22 15:55   ` Wolfram Sang

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.