mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] Trivial: Fix typo in include/linux/clk.h .
@ 2012-07-23 18:48 Jan-Simon Möller
  0 siblings, 0 replies; 3+ messages in thread
From: Jan-Simon Möller @ 2012-07-23 18:48 UTC (permalink / raw)
  To: dl9pf, trivial, linux-kernel; +Cc: linux

From: Jan-Simon Möller <jansimon.moeller@gmx.de>

Signed-off-by: Jan-Simon Möller <jansimon.moeller@gmx.de>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: linux-kernel@vger.kernel.org
---
 include/linux/clk.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/linux/clk.h b/include/linux/clk.h
index f7bd858..116172f 100644
--- a/include/linux/clk.h
+++ b/include/linux/clk.h
@@ -123,7 +123,7 @@ static inline void clk_unprepare(struct clk *clk)
 /**
  * clk_get - lookup and obtain a reference to a clock producer.
  * @dev: device for clock "consumer"
- * @id: clock comsumer ID
+ * @id: clock consumer ID
  *
  * Returns a struct clk corresponding to the clock producer, or
  * valid IS_ERR() condition containing errno.  The implementation
@@ -140,7 +140,7 @@ struct clk *clk_get(struct device *dev, const char *id);
 /**
  * devm_clk_get - lookup and obtain a managed reference to a clock producer.
  * @dev: device for clock "consumer"
- * @id: clock comsumer ID
+ * @id: clock consumer ID
  *
  * Returns a struct clk corresponding to the clock producer, or
  * valid IS_ERR() condition containing errno.  The implementation
-- 
1.7.3.4


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

* Re: [PATCH] Trivial: Fix typo in include/linux/clk.h .
  2012-07-09 19:06 dl9pf
@ 2012-07-09 19:09 ` Jesper Juhl
  0 siblings, 0 replies; 3+ messages in thread
From: Jesper Juhl @ 2012-07-09 19:09 UTC (permalink / raw)
  To: dl9pf; +Cc: Jan-Simon Möller, Russell King, linux-kernel

[-- Attachment #1: Type: TEXT/PLAIN, Size: 1501 bytes --]

On Mon, 9 Jul 2012, dl9pf@gmx.de wrote:

> From: Jan-Simon Möller <jansimon.moeller@gmx.de>
> 
> Signed-off-by: Jan-Simon Möller <jansimon.moeller@gmx.de>
> Cc: Russell King <linux@arm.linux.org.uk>
> Cc: linux-kernel@vger.kernel.org
> ---
>  include/linux/clk.h |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/include/linux/clk.h b/include/linux/clk.h
> index f7bd858..116172f 100644
> --- a/include/linux/clk.h
> +++ b/include/linux/clk.h
> @@ -123,7 +123,7 @@ static inline void clk_unprepare(struct clk *clk)
>  /**
>   * clk_get - lookup and obtain a reference to a clock producer.
>   * @dev: device for clock "consumer"
> - * @id: clock comsumer ID
> + * @id: clock consumer ID
>   *
>   * Returns a struct clk corresponding to the clock producer, or
>   * valid IS_ERR() condition containing errno.  The implementation
> @@ -140,7 +140,7 @@ struct clk *clk_get(struct device *dev, const char *id);
>  /**
>   * devm_clk_get - lookup and obtain a managed reference to a clock producer.
>   * @dev: device for clock "consumer"
> - * @id: clock comsumer ID
> + * @id: clock consumer ID
>   *
>   * Returns a struct clk corresponding to the clock producer, or
>   * valid IS_ERR() condition containing errno.  The implementation
> 
Looks correct to me :-)

Acked-by: Jesper Juhl <jj@chaosbits.net>


-- 
Jesper Juhl <jj@chaosbits.net>       http://www.chaosbits.net/
Don't top-post http://www.catb.org/jargon/html/T/top-post.html
Plain text mails only, please.

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

* [PATCH] Trivial: Fix typo in include/linux/clk.h .
@ 2012-07-09 19:06 dl9pf
  2012-07-09 19:09 ` Jesper Juhl
  0 siblings, 1 reply; 3+ messages in thread
From: dl9pf @ 2012-07-09 19:06 UTC (permalink / raw)
  To: dl9pf; +Cc: Jan-Simon Möller, Russell King, linux-kernel

From: Jan-Simon Möller <jansimon.moeller@gmx.de>

Signed-off-by: Jan-Simon Möller <jansimon.moeller@gmx.de>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: linux-kernel@vger.kernel.org
---
 include/linux/clk.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/linux/clk.h b/include/linux/clk.h
index f7bd858..116172f 100644
--- a/include/linux/clk.h
+++ b/include/linux/clk.h
@@ -123,7 +123,7 @@ static inline void clk_unprepare(struct clk *clk)
 /**
  * clk_get - lookup and obtain a reference to a clock producer.
  * @dev: device for clock "consumer"
- * @id: clock comsumer ID
+ * @id: clock consumer ID
  *
  * Returns a struct clk corresponding to the clock producer, or
  * valid IS_ERR() condition containing errno.  The implementation
@@ -140,7 +140,7 @@ struct clk *clk_get(struct device *dev, const char *id);
 /**
  * devm_clk_get - lookup and obtain a managed reference to a clock producer.
  * @dev: device for clock "consumer"
- * @id: clock comsumer ID
+ * @id: clock consumer ID
  *
  * Returns a struct clk corresponding to the clock producer, or
  * valid IS_ERR() condition containing errno.  The implementation
-- 
1.7.3.4


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

end of thread, other threads:[~2012-07-23 18:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-23 18:48 [PATCH] Trivial: Fix typo in include/linux/clk.h Jan-Simon Möller
  -- strict thread matches above, loose matches on Subject: below --
2012-07-09 19:06 dl9pf
2012-07-09 19:09 ` Jesper Juhl

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome