All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drivers: fix a typo in the kernel doc for devm_platform_ioremap_resource()
@ 2019-04-01  8:16 Bartosz Golaszewski
  2019-04-01  8:25 ` Rafael J. Wysocki
  2019-04-01 10:22 ` Mukesh Ojha
  0 siblings, 2 replies; 5+ messages in thread
From: Bartosz Golaszewski @ 2019-04-01  8:16 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Rafael J . Wysocki; +Cc: linux-kernel, Bartosz Golaszewski

From: Bartosz Golaszewski <bgolaszewski@baylibre.com>

It should have been 'management' not 'managemend'.

Fixes: 7945f929f1a7 ("drivers: provide devm_platform_ioremap_resource()")
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
---
 drivers/base/platform.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/base/platform.c b/drivers/base/platform.c
index dab0a5abc391..09c00d91094c 100644
--- a/drivers/base/platform.c
+++ b/drivers/base/platform.c
@@ -84,7 +84,7 @@ EXPORT_SYMBOL_GPL(platform_get_resource);
  *				    device
  *
  * @pdev: platform device to use both for memory resource lookup as well as
- *        resource managemend
+ *        resource management
  * @index: resource index
  */
 #ifdef CONFIG_HAS_IOMEM
-- 
2.21.0


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

* Re: [PATCH] drivers: fix a typo in the kernel doc for devm_platform_ioremap_resource()
  2019-04-01  8:16 [PATCH] drivers: fix a typo in the kernel doc for devm_platform_ioremap_resource() Bartosz Golaszewski
@ 2019-04-01  8:25 ` Rafael J. Wysocki
  2019-04-01 10:22 ` Mukesh Ojha
  1 sibling, 0 replies; 5+ messages in thread
From: Rafael J. Wysocki @ 2019-04-01  8:25 UTC (permalink / raw)
  To: Bartosz Golaszewski
  Cc: Greg Kroah-Hartman, Rafael J . Wysocki,
	Linux Kernel Mailing List, Bartosz Golaszewski

On Mon, Apr 1, 2019 at 10:16 AM Bartosz Golaszewski <brgl@bgdev.pl> wrote:
>
> From: Bartosz Golaszewski <bgolaszewski@baylibre.com>
>
> It should have been 'management' not 'managemend'.
>
> Fixes: 7945f929f1a7 ("drivers: provide devm_platform_ioremap_resource()")
> Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>

Reviewed-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

> ---
>  drivers/base/platform.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/base/platform.c b/drivers/base/platform.c
> index dab0a5abc391..09c00d91094c 100644
> --- a/drivers/base/platform.c
> +++ b/drivers/base/platform.c
> @@ -84,7 +84,7 @@ EXPORT_SYMBOL_GPL(platform_get_resource);
>   *                                 device
>   *
>   * @pdev: platform device to use both for memory resource lookup as well as
> - *        resource managemend
> + *        resource management
>   * @index: resource index
>   */
>  #ifdef CONFIG_HAS_IOMEM
> --
> 2.21.0
>

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

* Re: [PATCH] drivers: fix a typo in the kernel doc for devm_platform_ioremap_resource()
  2019-04-01  8:16 [PATCH] drivers: fix a typo in the kernel doc for devm_platform_ioremap_resource() Bartosz Golaszewski
  2019-04-01  8:25 ` Rafael J. Wysocki
@ 2019-04-01 10:22 ` Mukesh Ojha
  2019-04-10  7:50   ` Bartosz Golaszewski
  1 sibling, 1 reply; 5+ messages in thread
From: Mukesh Ojha @ 2019-04-01 10:22 UTC (permalink / raw)
  To: Bartosz Golaszewski, Greg Kroah-Hartman, Rafael J . Wysocki
  Cc: linux-kernel, Bartosz Golaszewski


On 4/1/2019 1:46 PM, Bartosz Golaszewski wrote:
> From: Bartosz Golaszewski <bgolaszewski@baylibre.com>
>
> It should have been 'management' not 'managemend'.
>
> Fixes: 7945f929f1a7 ("drivers: provide devm_platform_ioremap_resource()")
> Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
> ---
>   drivers/base/platform.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/base/platform.c b/drivers/base/platform.c
> index dab0a5abc391..09c00d91094c 100644
> --- a/drivers/base/platform.c
> +++ b/drivers/base/platform.c
> @@ -84,7 +84,7 @@ EXPORT_SYMBOL_GPL(platform_get_resource);
>    *				    device
>    *
>    * @pdev: platform device to use both for memory resource lookup as well as
> - *        resource managemend
> + *        resource management


:-)

Reviewed-by: Mukesh Ojha <mojha@codeaurora.org>

Cheers,
-Mukesh

>    * @index: resource index
>    */
>   #ifdef CONFIG_HAS_IOMEM

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

* Re: [PATCH] drivers: fix a typo in the kernel doc for devm_platform_ioremap_resource()
  2019-04-01 10:22 ` Mukesh Ojha
@ 2019-04-10  7:50   ` Bartosz Golaszewski
  2019-04-23  9:37     ` Bartosz Golaszewski
  0 siblings, 1 reply; 5+ messages in thread
From: Bartosz Golaszewski @ 2019-04-10  7:50 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Mukesh Ojha, Rafael J . Wysocki, Linux Kernel Mailing List,
	Bartosz Golaszewski

pon., 1 kwi 2019 o 12:23 Mukesh Ojha <mojha@codeaurora.org> napisał(a):
>
>
> On 4/1/2019 1:46 PM, Bartosz Golaszewski wrote:
> > From: Bartosz Golaszewski <bgolaszewski@baylibre.com>
> >
> > It should have been 'management' not 'managemend'.
> >
> > Fixes: 7945f929f1a7 ("drivers: provide devm_platform_ioremap_resource()")
> > Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
> > ---
> >   drivers/base/platform.c | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/base/platform.c b/drivers/base/platform.c
> > index dab0a5abc391..09c00d91094c 100644
> > --- a/drivers/base/platform.c
> > +++ b/drivers/base/platform.c
> > @@ -84,7 +84,7 @@ EXPORT_SYMBOL_GPL(platform_get_resource);
> >    *                              device
> >    *
> >    * @pdev: platform device to use both for memory resource lookup as well as
> > - *        resource managemend
> > + *        resource management
>
>
> :-)
>
> Reviewed-by: Mukesh Ojha <mojha@codeaurora.org>
>
> Cheers,
> -Mukesh
>
> >    * @index: resource index
> >    */
> >   #ifdef CONFIG_HAS_IOMEM

Hi Greg,

can you pick this one up into your tree?

Thanks in advance,
Bartosz

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

* Re: [PATCH] drivers: fix a typo in the kernel doc for devm_platform_ioremap_resource()
  2019-04-10  7:50   ` Bartosz Golaszewski
@ 2019-04-23  9:37     ` Bartosz Golaszewski
  0 siblings, 0 replies; 5+ messages in thread
From: Bartosz Golaszewski @ 2019-04-23  9:37 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Mukesh Ojha, Rafael J . Wysocki, Linux Kernel Mailing List,
	Bartosz Golaszewski

śr., 10 kwi 2019 o 09:50 Bartosz Golaszewski <brgl@bgdev.pl> napisał(a):
>
> pon., 1 kwi 2019 o 12:23 Mukesh Ojha <mojha@codeaurora.org> napisał(a):
> >
> >
> > On 4/1/2019 1:46 PM, Bartosz Golaszewski wrote:
> > > From: Bartosz Golaszewski <bgolaszewski@baylibre.com>
> > >
> > > It should have been 'management' not 'managemend'.
> > >
> > > Fixes: 7945f929f1a7 ("drivers: provide devm_platform_ioremap_resource()")
> > > Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
> > > ---
> > >   drivers/base/platform.c | 2 +-
> > >   1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git a/drivers/base/platform.c b/drivers/base/platform.c
> > > index dab0a5abc391..09c00d91094c 100644
> > > --- a/drivers/base/platform.c
> > > +++ b/drivers/base/platform.c
> > > @@ -84,7 +84,7 @@ EXPORT_SYMBOL_GPL(platform_get_resource);
> > >    *                              device
> > >    *
> > >    * @pdev: platform device to use both for memory resource lookup as well as
> > > - *        resource managemend
> > > + *        resource management
> >
> >
> > :-)
> >
> > Reviewed-by: Mukesh Ojha <mojha@codeaurora.org>
> >
> > Cheers,
> > -Mukesh
> >
> > >    * @index: resource index
> > >    */
> > >   #ifdef CONFIG_HAS_IOMEM
>
> Hi Greg,
>
> can you pick this one up into your tree?
>
> Thanks in advance,
> Bartosz

Ping.

Bart

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

end of thread, other threads:[~2019-04-23  9:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-01  8:16 [PATCH] drivers: fix a typo in the kernel doc for devm_platform_ioremap_resource() Bartosz Golaszewski
2019-04-01  8:25 ` Rafael J. Wysocki
2019-04-01 10:22 ` Mukesh Ojha
2019-04-10  7:50   ` Bartosz Golaszewski
2019-04-23  9:37     ` Bartosz Golaszewski

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.