Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1232373 > unrolled thread
| Started by | Stephen Boyd <sboyd@codeaurora.org> |
|---|---|
| First post | 2015-09-24 21:30 +0200 |
| Last post | 2015-09-25 23:20 +0200 |
| Articles | 3 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH] PM / OPP: Fix typo modifcation -> modification Stephen Boyd <sboyd@codeaurora.org> - 2015-09-24 21:30 +0200
Re: [PATCH] PM / OPP: Fix typo modifcation -> modification Viresh Kumar <viresh.kumar@linaro.org> - 2015-09-24 23:00 +0200
Re: [PATCH] PM / OPP: Fix typo modifcation -> modification "Rafael J. Wysocki" <rjw@rjwysocki.net> - 2015-09-25 23:20 +0200
| From | Stephen Boyd <sboyd@codeaurora.org> |
|---|---|
| Date | 2015-09-24 21:30 +0200 |
| Subject | [PATCH] PM / OPP: Fix typo modifcation -> modification |
| Message-ID | <qcknn-3W1-7@gated-at.bofh.it> |
Reported-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org> --- drivers/base/power/opp/core.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/base/power/opp/core.c b/drivers/base/power/opp/core.c index 8a72f0e586e8..62b918144b5b 100644 --- a/drivers/base/power/opp/core.c +++ b/drivers/base/power/opp/core.c @@ -961,7 +961,7 @@ EXPORT_SYMBOL_GPL(dev_pm_opp_add); * 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. @@ -1049,7 +1049,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) @@ -1075,7 +1075,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) -- The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum, a Linux Foundation Collaborative Project -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Viresh Kumar <viresh.kumar@linaro.org> |
|---|---|
| Date | 2015-09-24 23:00 +0200 |
| Message-ID | <qclMu-5Lb-1@gated-at.bofh.it> |
| In reply to | #1232373 |
On 24 September 2015 at 12:28, Stephen Boyd <sboyd@codeaurora.org> wrote: > Reported-by: Viresh Kumar <viresh.kumar@linaro.org> > Signed-off-by: Stephen Boyd <sboyd@codeaurora.org> > --- > drivers/base/power/opp/core.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/base/power/opp/core.c b/drivers/base/power/opp/core.c > index 8a72f0e586e8..62b918144b5b 100644 > --- a/drivers/base/power/opp/core.c > +++ b/drivers/base/power/opp/core.c > @@ -961,7 +961,7 @@ EXPORT_SYMBOL_GPL(dev_pm_opp_add); > * 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. > @@ -1049,7 +1049,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) > @@ -1075,7 +1075,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) Acked-by: Viresh Kumar <viresh.kumar@linaro.org> -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | "Rafael J. Wysocki" <rjw@rjwysocki.net> |
|---|---|
| Date | 2015-09-25 23:20 +0200 |
| Message-ID | <qcIzo-4Ol-7@gated-at.bofh.it> |
| In reply to | #1232429 |
On Thursday, September 24, 2015 01:58:21 PM Viresh Kumar wrote: > On 24 September 2015 at 12:28, Stephen Boyd <sboyd@codeaurora.org> wrote: > > Reported-by: Viresh Kumar <viresh.kumar@linaro.org> > > Signed-off-by: Stephen Boyd <sboyd@codeaurora.org> > > --- > > drivers/base/power/opp/core.c | 6 +++--- > > 1 file changed, 3 insertions(+), 3 deletions(-) > > > > diff --git a/drivers/base/power/opp/core.c b/drivers/base/power/opp/core.c > > index 8a72f0e586e8..62b918144b5b 100644 > > --- a/drivers/base/power/opp/core.c > > +++ b/drivers/base/power/opp/core.c > > @@ -961,7 +961,7 @@ EXPORT_SYMBOL_GPL(dev_pm_opp_add); > > * 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. > > @@ -1049,7 +1049,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) > > @@ -1075,7 +1075,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) > > Acked-by: Viresh Kumar <viresh.kumar@linaro.org> Applied, thanks! Rafael -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web