linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mtd: nand: fix spelling in driver api documentation
@ 2018-07-20  7:53 Marcel Ziswiler
  2018-07-23 15:39 ` Jonathan Corbet
  0 siblings, 1 reply; 6+ messages in thread
From: Marcel Ziswiler @ 2018-07-20  7:53 UTC (permalink / raw)
  To: linux-mtd
  Cc: Marcel Ziswiler, Gregory CLEMENT, H Hartley Sweeten, linux-doc,
	Jonathan Corbet, linux-kernel, Krzysztof Kozlowski,
	Boris Brezillon, Vladimir Zapolskiy

From: Marcel Ziswiler <marcel.ziswiler@toradex.com>

This fixes some spelling mistakes.

Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>

---

 Documentation/driver-api/mtdnand.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/driver-api/mtdnand.rst b/Documentation/driver-api/mtdnand.rst
index dcd63599f700..c55a6034c397 100644
--- a/Documentation/driver-api/mtdnand.rst
+++ b/Documentation/driver-api/mtdnand.rst
@@ -374,7 +374,7 @@ The nand driver supports three different types of hardware ECC.
 
 -  NAND_ECC_HW8_512
 
-   Hardware ECC generator providing 6 bytes ECC per 512 byte.
+   Hardware ECC generator providing 8 bytes ECC per 512 byte.
 
 If your hardware generator has a different functionality add it at the
 appropriate place in nand_base.c
@@ -889,7 +889,7 @@ Use these constants to select the ECC algorithm::
     #define NAND_ECC_HW3_512    3
     /* Hardware ECC 6 byte ECC per 512 Byte data */
     #define NAND_ECC_HW6_512    4
-    /* Hardware ECC 6 byte ECC per 512 Byte data */
+    /* Hardware ECC 8 byte ECC per 512 Byte data */
     #define NAND_ECC_HW8_512    6
 
 
-- 
2.14.4


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

* Re: [PATCH] mtd: nand: fix spelling in driver api documentation
  2018-07-20  7:53 [PATCH] mtd: nand: fix spelling in driver api documentation Marcel Ziswiler
@ 2018-07-23 15:39 ` Jonathan Corbet
  2018-07-23 15:44   ` Marcel Ziswiler
  2018-07-23 16:19   ` Boris Brezillon
  0 siblings, 2 replies; 6+ messages in thread
From: Jonathan Corbet @ 2018-07-23 15:39 UTC (permalink / raw)
  To: Marcel Ziswiler
  Cc: linux-mtd, Marcel Ziswiler, Gregory CLEMENT, H Hartley Sweeten,
	linux-doc, linux-kernel, Krzysztof Kozlowski, Boris Brezillon,
	Vladimir Zapolskiy

On Fri, 20 Jul 2018 09:53:33 +0200
Marcel Ziswiler <marcel@ziswiler.com> wrote:

> From: Marcel Ziswiler <marcel.ziswiler@toradex.com>
> 
> This fixes some spelling mistakes.

So I hate to complain about a documentation improvement, but...

> 
> Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
> 
> ---
> 
>  Documentation/driver-api/mtdnand.rst | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/Documentation/driver-api/mtdnand.rst b/Documentation/driver-api/mtdnand.rst
> index dcd63599f700..c55a6034c397 100644
> --- a/Documentation/driver-api/mtdnand.rst
> +++ b/Documentation/driver-api/mtdnand.rst
> @@ -374,7 +374,7 @@ The nand driver supports three different types of hardware ECC.
>  
>  -  NAND_ECC_HW8_512
>  
> -   Hardware ECC generator providing 6 bytes ECC per 512 byte.
> +   Hardware ECC generator providing 8 bytes ECC per 512 byte.

That's not a spelling mistake, that's a factual change.  I'll apply the
patch since it appears to be correct, but will be tweaking the changelog.

Thanks,

jon

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

* Re: [PATCH] mtd: nand: fix spelling in driver api documentation
  2018-07-23 15:39 ` Jonathan Corbet
@ 2018-07-23 15:44   ` Marcel Ziswiler
  2018-07-23 16:19   ` Boris Brezillon
  1 sibling, 0 replies; 6+ messages in thread
From: Marcel Ziswiler @ 2018-07-23 15:44 UTC (permalink / raw)
  To: corbet
  Cc: linux-kernel, linux-mtd, krzk, hsweeten, boris.brezillon,
	gregory.clement, vz, linux-doc

On Mon, 2018-07-23 at 09:39 -0600, Jonathan Corbet wrote:
> On Fri, 20 Jul 2018 09:53:33 +0200
> Marcel Ziswiler <marcel@ziswiler.com> wrote:
> 
> > From: Marcel Ziswiler <marcel.ziswiler@toradex.com>
> > 
> > This fixes some spelling mistakes.
> 
> So I hate to complain about a documentation improvement, but...
> 
> > 
> > Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
> > 
> > ---
> > 
> >  Documentation/driver-api/mtdnand.rst | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/Documentation/driver-api/mtdnand.rst
> > b/Documentation/driver-api/mtdnand.rst
> > index dcd63599f700..c55a6034c397 100644
> > --- a/Documentation/driver-api/mtdnand.rst
> > +++ b/Documentation/driver-api/mtdnand.rst
> > @@ -374,7 +374,7 @@ The nand driver supports three different types
> > of hardware ECC.
> >  
> >  -  NAND_ECC_HW8_512
> >  
> > -   Hardware ECC generator providing 6 bytes ECC per 512 byte.
> > +   Hardware ECC generator providing 8 bytes ECC per 512 byte.
> 
> That's not a spelling mistake, that's a factual change.  I'll apply
> the
> patch since it appears to be correct, but will be tweaking the
> changelog.

Yeah, probably a copy/paste mistake. No pun intended.

> Thanks,
> 
> jon

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

* Re: [PATCH] mtd: nand: fix spelling in driver api documentation
  2018-07-23 15:39 ` Jonathan Corbet
  2018-07-23 15:44   ` Marcel Ziswiler
@ 2018-07-23 16:19   ` Boris Brezillon
  2018-07-25  7:29     ` Miquel Raynal
  1 sibling, 1 reply; 6+ messages in thread
From: Boris Brezillon @ 2018-07-23 16:19 UTC (permalink / raw)
  To: Jonathan Corbet
  Cc: Marcel Ziswiler, linux-mtd, Marcel Ziswiler, Gregory CLEMENT,
	H Hartley Sweeten, linux-doc, linux-kernel, Krzysztof Kozlowski,
	Vladimir Zapolskiy, Miquel Raynal

Hi Jonathan,

On Mon, 23 Jul 2018 09:39:24 -0600
Jonathan Corbet <corbet@lwn.net> wrote:

> On Fri, 20 Jul 2018 09:53:33 +0200
> Marcel Ziswiler <marcel@ziswiler.com> wrote:
> 
> > From: Marcel Ziswiler <marcel.ziswiler@toradex.com>
> > 
> > This fixes some spelling mistakes.  
> 
> So I hate to complain about a documentation improvement, but...
> 
> > 
> > Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
> > 
> > ---
> > 
> >  Documentation/driver-api/mtdnand.rst | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/Documentation/driver-api/mtdnand.rst b/Documentation/driver-api/mtdnand.rst
> > index dcd63599f700..c55a6034c397 100644
> > --- a/Documentation/driver-api/mtdnand.rst
> > +++ b/Documentation/driver-api/mtdnand.rst
> > @@ -374,7 +374,7 @@ The nand driver supports three different types of hardware ECC.
> >  
> >  -  NAND_ECC_HW8_512
> >  
> > -   Hardware ECC generator providing 6 bytes ECC per 512 byte.
> > +   Hardware ECC generator providing 8 bytes ECC per 512 byte.  
> 
> That's not a spelling mistake, that's a factual change.  I'll apply the
> patch since it appears to be correct, but will be tweaking the changelog.

I think Miquel had planned to apply this patch to the NAND tree, but we
don't seem to have conflicting changes on this file, so feel free to
take it in the doc tree.

Acked-by: Boris Brezillon <boris.brezillon@bootlin.com>

Regards,

Boris

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

* Re: [PATCH] mtd: nand: fix spelling in driver api documentation
  2018-07-23 16:19   ` Boris Brezillon
@ 2018-07-25  7:29     ` Miquel Raynal
  2018-07-25 14:15       ` Jonathan Corbet
  0 siblings, 1 reply; 6+ messages in thread
From: Miquel Raynal @ 2018-07-25  7:29 UTC (permalink / raw)
  To: Boris Brezillon
  Cc: Jonathan Corbet, Marcel Ziswiler, linux-mtd, Marcel Ziswiler,
	Gregory CLEMENT, H Hartley Sweeten, linux-doc, linux-kernel,
	Krzysztof Kozlowski, Vladimir Zapolskiy

Hi Jonathan,

Boris Brezillon <boris.brezillon@bootlin.com> wrote on Mon, 23 Jul 2018
18:19:15 +0200:

> Hi Jonathan,
> 
> On Mon, 23 Jul 2018 09:39:24 -0600
> Jonathan Corbet <corbet@lwn.net> wrote:
> 
> > On Fri, 20 Jul 2018 09:53:33 +0200
> > Marcel Ziswiler <marcel@ziswiler.com> wrote:
> >   
> > > From: Marcel Ziswiler <marcel.ziswiler@toradex.com>
> > > 
> > > This fixes some spelling mistakes.    
> > 
> > So I hate to complain about a documentation improvement, but...
> >   
> > > 
> > > Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
> > > 
> > > ---
> > > 
> > >  Documentation/driver-api/mtdnand.rst | 4 ++--
> > >  1 file changed, 2 insertions(+), 2 deletions(-)
> > > 
> > > diff --git a/Documentation/driver-api/mtdnand.rst b/Documentation/driver-api/mtdnand.rst
> > > index dcd63599f700..c55a6034c397 100644
> > > --- a/Documentation/driver-api/mtdnand.rst
> > > +++ b/Documentation/driver-api/mtdnand.rst
> > > @@ -374,7 +374,7 @@ The nand driver supports three different types of hardware ECC.
> > >  
> > >  -  NAND_ECC_HW8_512
> > >  
> > > -   Hardware ECC generator providing 6 bytes ECC per 512 byte.
> > > +   Hardware ECC generator providing 8 bytes ECC per 512 byte.    
> > 
> > That's not a spelling mistake, that's a factual change.  I'll apply the
> > patch since it appears to be correct, but will be tweaking the changelog.  
> 
> I think Miquel had planned to apply this patch to the NAND tree, but we
> don't seem to have conflicting changes on this file, so feel free to
> take it in the doc tree.
> 
> Acked-by: Boris Brezillon <boris.brezillon@bootlin.com>

Can you confirm you will take this patch?

Thanks,
Miquèl

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

* Re: [PATCH] mtd: nand: fix spelling in driver api documentation
  2018-07-25  7:29     ` Miquel Raynal
@ 2018-07-25 14:15       ` Jonathan Corbet
  0 siblings, 0 replies; 6+ messages in thread
From: Jonathan Corbet @ 2018-07-25 14:15 UTC (permalink / raw)
  To: Miquel Raynal
  Cc: Boris Brezillon, Marcel Ziswiler, linux-mtd, Marcel Ziswiler,
	Gregory CLEMENT, H Hartley Sweeten, linux-doc, linux-kernel,
	Krzysztof Kozlowski, Vladimir Zapolskiy

On Wed, 25 Jul 2018 09:29:28 +0200
Miquel Raynal <miquel.raynal@bootlin.com> wrote:

> > > That's not a spelling mistake, that's a factual change.  I'll apply the
> > > patch since it appears to be correct, but will be tweaking the changelog.    
> > 
> > I think Miquel had planned to apply this patch to the NAND tree, but we
> > don't seem to have conflicting changes on this file, so feel free to
> > take it in the doc tree.
> > 
> > Acked-by: Boris Brezillon <boris.brezillon@bootlin.com>  
> 
> Can you confirm you will take this patch?

Yeah, that's what the "I'll apply the patch" part above means :)  It's
already in docs-next.

Thanks,

jon

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

end of thread, other threads:[~2018-07-25 14:15 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-20  7:53 [PATCH] mtd: nand: fix spelling in driver api documentation Marcel Ziswiler
2018-07-23 15:39 ` Jonathan Corbet
2018-07-23 15:44   ` Marcel Ziswiler
2018-07-23 16:19   ` Boris Brezillon
2018-07-25  7:29     ` Miquel Raynal
2018-07-25 14:15       ` Jonathan Corbet

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).