public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2/2] base: power : opp.c: fixed a typo error
@ 2015-05-26 18:30 Sriram Dash
  2015-05-27  2:20 ` Viresh Kumar
  2015-05-31 21:58 ` Greg KH
  0 siblings, 2 replies; 3+ messages in thread
From: Sriram Dash @ 2015-05-26 18:30 UTC (permalink / raw)
  To: rjw, len.brown, pavel, gregkh; +Cc: linux-pm, linux-kernel, trivial, dashsriram

From: dashsriram <dash.sriram@gmail.com>

Fixed a typo error in the file

Signed-off-by: Sriram Dash <dash.sriram@gmail.com>
---
 drivers/base/power/opp.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/base/power/opp.c b/drivers/base/power/opp.c
index 677fb28..300941b 100644
--- a/drivers/base/power/opp.c
+++ b/drivers/base/power/opp.c
@@ -675,7 +675,7 @@ EXPORT_SYMBOL_GPL(dev_pm_opp_remove);
  * share a common logic which is isolated here.
  *
  * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
- * copy operation, returns 0 if no modifcation was done OR modification was
+ * copy operation, returns 0 if no modification was done OR modification was
  * successful.
  *
  * Locking: The internal device_opp and opp structures are RCU protected.
@@ -763,7 +763,7 @@ unlock:
  * mutex locking or synchronize_rcu() blocking calls cannot be used.
  *
  * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
- * copy operation, returns 0 if no modifcation was done OR modification was
+ * copy operation, returns 0 if no modification was done OR modification was
  * successful.
  */
 int dev_pm_opp_enable(struct device *dev, unsigned long freq)
@@ -789,7 +789,7 @@ EXPORT_SYMBOL_GPL(dev_pm_opp_enable);
  * mutex locking or synchronize_rcu() blocking calls cannot be used.
  *
  * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
- * copy operation, returns 0 if no modifcation was done OR modification was
+ * copy operation, returns 0 if no modification was done OR modification was
  * successful.
  */
 int dev_pm_opp_disable(struct device *dev, unsigned long freq)
-- 
2.4.1


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

* Re: [PATCH 2/2] base: power : opp.c: fixed a typo error
  2015-05-26 18:30 [PATCH 2/2] base: power : opp.c: fixed a typo error Sriram Dash
@ 2015-05-27  2:20 ` Viresh Kumar
  2015-05-31 21:58 ` Greg KH
  1 sibling, 0 replies; 3+ messages in thread
From: Viresh Kumar @ 2015-05-27  2:20 UTC (permalink / raw)
  To: Sriram Dash
  Cc: Rafael J. Wysocki, len.brown@intel.com, pavel@ucw.cz,
	Greg Kroah-Hartman, Linux PM list, linux-kernel@vger.kernel.org,
	Jiri Kosina

On Wed, May 27, 2015 at 12:00 AM, Sriram Dash <dash.sriram@gmail.com> wrote:
> From: dashsriram <dash.sriram@gmail.com>
>
> Fixed a typo error in the file
>
> Signed-off-by: Sriram Dash <dash.sriram@gmail.com>
> ---
>  drivers/base/power/opp.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/base/power/opp.c b/drivers/base/power/opp.c
> index 677fb28..300941b 100644
> --- a/drivers/base/power/opp.c
> +++ b/drivers/base/power/opp.c
> @@ -675,7 +675,7 @@ EXPORT_SYMBOL_GPL(dev_pm_opp_remove);
>   * share a common logic which is isolated here.
>   *
>   * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
> - * copy operation, returns 0 if no modifcation was done OR modification was
> + * copy operation, returns 0 if no modification was done OR modification was
>   * successful.
>   *
>   * Locking: The internal device_opp and opp structures are RCU protected.
> @@ -763,7 +763,7 @@ unlock:
>   * mutex locking or synchronize_rcu() blocking calls cannot be used.
>   *
>   * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
> - * copy operation, returns 0 if no modifcation was done OR modification was
> + * copy operation, returns 0 if no modification was done OR modification was
>   * successful.
>   */
>  int dev_pm_opp_enable(struct device *dev, unsigned long freq)
> @@ -789,7 +789,7 @@ EXPORT_SYMBOL_GPL(dev_pm_opp_enable);
>   * mutex locking or synchronize_rcu() blocking calls cannot be used.
>   *
>   * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
> - * copy operation, returns 0 if no modifcation was done OR modification was
> + * copy operation, returns 0 if no modification was done OR modification was
>   * successful.
>   */
>  int dev_pm_opp_disable(struct device *dev, unsigned long freq)

Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org>

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

* Re: [PATCH 2/2] base: power : opp.c: fixed a typo error
  2015-05-26 18:30 [PATCH 2/2] base: power : opp.c: fixed a typo error Sriram Dash
  2015-05-27  2:20 ` Viresh Kumar
@ 2015-05-31 21:58 ` Greg KH
  1 sibling, 0 replies; 3+ messages in thread
From: Greg KH @ 2015-05-31 21:58 UTC (permalink / raw)
  To: Sriram Dash; +Cc: rjw, len.brown, pavel, linux-pm, linux-kernel, trivial

On Wed, May 27, 2015 at 12:00:10AM +0530, Sriram Dash wrote:
> From: dashsriram <dash.sriram@gmail.com>

This name doesn't match your signed-off-by line :(

> 
> Fixed a typo error in the file
> 
> Signed-off-by: Sriram Dash <dash.sriram@gmail.com>

Where is patch 1/2 of this series?

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

end of thread, other threads:[~2015-05-31 22:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-26 18:30 [PATCH 2/2] base: power : opp.c: fixed a typo error Sriram Dash
2015-05-27  2:20 ` Viresh Kumar
2015-05-31 21:58 ` Greg KH

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