All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mtd: nand: Fix nanddev_pos_next_page() kernel-doc header
@ 2018-11-06 16:25 Boris Brezillon
  2018-11-06 16:29 ` Miquel Raynal
  0 siblings, 1 reply; 4+ messages in thread
From: Boris Brezillon @ 2018-11-06 16:25 UTC (permalink / raw)
  To: Boris Brezillon, Richard Weinberger, Miquel Raynal, linux-mtd
  Cc: David Woodhouse, Brian Norris, Marek Vasut

Function name is wrong in the kernel-doc header.

Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com>
---
 include/linux/mtd/nand.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/mtd/nand.h b/include/linux/mtd/nand.h
index 7ff3770e468b..12d75402472a 100644
--- a/include/linux/mtd/nand.h
+++ b/include/linux/mtd/nand.h
@@ -583,7 +583,7 @@ static inline void nanddev_pos_next_eraseblock(struct nand_device *nand,
 }
 
 /**
- * nanddev_pos_next_eraseblock() - Move a position to the next page
+ * nanddev_pos_next_page() - Move a position to the next page
  * @nand: NAND device
  * @pos: the position to update
  *
-- 
2.17.1

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

* Re: [PATCH] mtd: nand: Fix nanddev_pos_next_page() kernel-doc header
  2018-11-06 16:25 [PATCH] mtd: nand: Fix nanddev_pos_next_page() kernel-doc header Boris Brezillon
@ 2018-11-06 16:29 ` Miquel Raynal
  2018-11-06 16:37   ` Boris Brezillon
  0 siblings, 1 reply; 4+ messages in thread
From: Miquel Raynal @ 2018-11-06 16:29 UTC (permalink / raw)
  To: Boris Brezillon
  Cc: Richard Weinberger, linux-mtd, David Woodhouse, Brian Norris,
	Marek Vasut


Boris Brezillon <boris.brezillon@bootlin.com> wrote on Tue,  6 Nov 2018
17:25:37 +0100:

> Function name is wrong in the kernel-doc header.
> 
> Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com>
> ---
>  include/linux/mtd/nand.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/include/linux/mtd/nand.h b/include/linux/mtd/nand.h
> index 7ff3770e468b..12d75402472a 100644
> --- a/include/linux/mtd/nand.h
> +++ b/include/linux/mtd/nand.h
> @@ -583,7 +583,7 @@ static inline void nanddev_pos_next_eraseblock(struct nand_device *nand,
>  }
>  
>  /**
> - * nanddev_pos_next_eraseblock() - Move a position to the next page
> + * nanddev_pos_next_page() - Move a position to the next page
>   * @nand: NAND device
>   * @pos: the position to update
>   *

Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>


Thanks,
Miquèl

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

* Re: [PATCH] mtd: nand: Fix nanddev_pos_next_page() kernel-doc header
  2018-11-06 16:29 ` Miquel Raynal
@ 2018-11-06 16:37   ` Boris Brezillon
  2018-11-06 16:43     ` Boris Brezillon
  0 siblings, 1 reply; 4+ messages in thread
From: Boris Brezillon @ 2018-11-06 16:37 UTC (permalink / raw)
  To: Miquel Raynal
  Cc: Richard Weinberger, linux-mtd, David Woodhouse, Brian Norris,
	Marek Vasut

On Tue, 6 Nov 2018 17:29:46 +0100
Miquel Raynal <miquel.raynal@bootlin.com> wrote:

> Boris Brezillon <boris.brezillon@bootlin.com> wrote on Tue,  6 Nov 2018
> 17:25:37 +0100:
> 
> > Function name is wrong in the kernel-doc header.
> > 

Oops, forgot to add

Fixes: 9c3736a3de21 ("mtd: nand: Add core infrastructure to deal with NAND devices")

> > Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com>
> > ---
> >  include/linux/mtd/nand.h | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/include/linux/mtd/nand.h b/include/linux/mtd/nand.h
> > index 7ff3770e468b..12d75402472a 100644
> > --- a/include/linux/mtd/nand.h
> > +++ b/include/linux/mtd/nand.h
> > @@ -583,7 +583,7 @@ static inline void nanddev_pos_next_eraseblock(struct nand_device *nand,
> >  }
> >  
> >  /**
> > - * nanddev_pos_next_eraseblock() - Move a position to the next page
> > + * nanddev_pos_next_page() - Move a position to the next page
> >   * @nand: NAND device
> >   * @pos: the position to update
> >   *  
> 
> Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
> 
> 
> Thanks,
> Miquèl

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

* Re: [PATCH] mtd: nand: Fix nanddev_pos_next_page() kernel-doc header
  2018-11-06 16:37   ` Boris Brezillon
@ 2018-11-06 16:43     ` Boris Brezillon
  0 siblings, 0 replies; 4+ messages in thread
From: Boris Brezillon @ 2018-11-06 16:43 UTC (permalink / raw)
  To: Miquel Raynal
  Cc: Richard Weinberger, Brian Norris, linux-mtd, David Woodhouse,
	Marek Vasut

On Tue, 6 Nov 2018 17:37:13 +0100
Boris Brezillon <boris.brezillon@bootlin.com> wrote:

> On Tue, 6 Nov 2018 17:29:46 +0100
> Miquel Raynal <miquel.raynal@bootlin.com> wrote:
> 
> > Boris Brezillon <boris.brezillon@bootlin.com> wrote on Tue,  6 Nov 2018
> > 17:25:37 +0100:
> >   
> > > Function name is wrong in the kernel-doc header.
> > >   
> 
> Oops, forgot to add
> 
> Fixes: 9c3736a3de21 ("mtd: nand: Add core infrastructure to deal with NAND devices")

Queued to the fixes branch after adding the Fixes tag.

> 
> > > Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com>
> > > ---
> > >  include/linux/mtd/nand.h | 2 +-
> > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > > 
> > > diff --git a/include/linux/mtd/nand.h b/include/linux/mtd/nand.h
> > > index 7ff3770e468b..12d75402472a 100644
> > > --- a/include/linux/mtd/nand.h
> > > +++ b/include/linux/mtd/nand.h
> > > @@ -583,7 +583,7 @@ static inline void nanddev_pos_next_eraseblock(struct nand_device *nand,
> > >  }
> > >  
> > >  /**
> > > - * nanddev_pos_next_eraseblock() - Move a position to the next page
> > > + * nanddev_pos_next_page() - Move a position to the next page
> > >   * @nand: NAND device
> > >   * @pos: the position to update
> > >   *    
> > 
> > Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
> > 
> > 
> > Thanks,
> > Miquèl  
> 
> 
> ______________________________________________________
> Linux MTD discussion mailing list
> http://lists.infradead.org/mailman/listinfo/linux-mtd/

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

end of thread, other threads:[~2018-11-06 16:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-06 16:25 [PATCH] mtd: nand: Fix nanddev_pos_next_page() kernel-doc header Boris Brezillon
2018-11-06 16:29 ` Miquel Raynal
2018-11-06 16:37   ` Boris Brezillon
2018-11-06 16:43     ` Boris Brezillon

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.