All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mtd: rawnand: sm_common: drop unexpected word 'is' in the comments
@ 2022-06-22 16:05 ` Jiang Jian
  0 siblings, 0 replies; 4+ messages in thread
From: Jiang Jian @ 2022-06-22 16:05 UTC (permalink / raw)
  To: miquel.raynal, vigneshr; +Cc: richard, linux-mtd, linux-kernel, Jiang Jian

there is an unexpected word 'is' in the comments that need to be dropped

file: drivers/mtd/nand/raw/sm_common.c
line: 55

/* NOTE: This layout is is not compatabable with SmartMedia, */

changed to:

/* NOTE: This layout is not compatabable with SmartMedia, */

Signed-off-by: Jiang Jian <jiangjian@cdjrlc.com>
---
 drivers/mtd/nand/raw/sm_common.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mtd/nand/raw/sm_common.c b/drivers/mtd/nand/raw/sm_common.c
index ba24cb36d0b9..b2b42dd1a2de 100644
--- a/drivers/mtd/nand/raw/sm_common.c
+++ b/drivers/mtd/nand/raw/sm_common.c
@@ -52,7 +52,7 @@ static const struct mtd_ooblayout_ops oob_sm_ops = {
 	.free = oob_sm_ooblayout_free,
 };
 
-/* NOTE: This layout is is not compatabable with SmartMedia, */
+/* NOTE: This layout is not compatabable with SmartMedia, */
 /* because the 256 byte devices have page depenent oob layout */
 /* However it does preserve the bad block markers */
 /* If you use smftl, it will bypass this and work correctly */
-- 
2.17.1


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

* [PATCH] mtd: rawnand: sm_common: drop unexpected word 'is' in the comments
@ 2022-06-22 16:05 ` Jiang Jian
  0 siblings, 0 replies; 4+ messages in thread
From: Jiang Jian @ 2022-06-22 16:05 UTC (permalink / raw)
  To: miquel.raynal, vigneshr; +Cc: richard, linux-mtd, linux-kernel, Jiang Jian

there is an unexpected word 'is' in the comments that need to be dropped

file: drivers/mtd/nand/raw/sm_common.c
line: 55

/* NOTE: This layout is is not compatabable with SmartMedia, */

changed to:

/* NOTE: This layout is not compatabable with SmartMedia, */

Signed-off-by: Jiang Jian <jiangjian@cdjrlc.com>
---
 drivers/mtd/nand/raw/sm_common.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mtd/nand/raw/sm_common.c b/drivers/mtd/nand/raw/sm_common.c
index ba24cb36d0b9..b2b42dd1a2de 100644
--- a/drivers/mtd/nand/raw/sm_common.c
+++ b/drivers/mtd/nand/raw/sm_common.c
@@ -52,7 +52,7 @@ static const struct mtd_ooblayout_ops oob_sm_ops = {
 	.free = oob_sm_ooblayout_free,
 };
 
-/* NOTE: This layout is is not compatabable with SmartMedia, */
+/* NOTE: This layout is not compatabable with SmartMedia, */
 /* because the 256 byte devices have page depenent oob layout */
 /* However it does preserve the bad block markers */
 /* If you use smftl, it will bypass this and work correctly */
-- 
2.17.1


______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

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

* Re: [PATCH] mtd: rawnand: sm_common: drop unexpected word 'is' in the comments
  2022-06-22 16:05 ` Jiang Jian
@ 2022-06-24 18:48   ` miquel.raynal
  -1 siblings, 0 replies; 4+ messages in thread
From: miquel.raynal @ 2022-06-24 18:48 UTC (permalink / raw)
  To: Jiang Jian, miquel.raynal, vigneshr; +Cc: richard, linux-mtd, linux-kernel

From: Miquel Raynal <miquel.raynal@bootlin.com>

On Wed, 2022-06-22 at 16:05:11 UTC, Jiang Jian wrote:
> there is an unexpected word 'is' in the comments that need to be dropped
> 
> file: drivers/mtd/nand/raw/sm_common.c
> line: 55
> 
> /* NOTE: This layout is is not compatabable with SmartMedia, */
> 
> changed to:
> 
> /* NOTE: This layout is not compatabable with SmartMedia, */
> 
> Signed-off-by: Jiang Jian <jiangjian@cdjrlc.com>

Applied to https://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next, thanks.

Miquel

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

* Re: [PATCH] mtd: rawnand: sm_common: drop unexpected word 'is' in the comments
@ 2022-06-24 18:48   ` miquel.raynal
  0 siblings, 0 replies; 4+ messages in thread
From: miquel.raynal @ 2022-06-24 18:48 UTC (permalink / raw)
  To: Jiang Jian, miquel.raynal, vigneshr; +Cc: richard, linux-mtd, linux-kernel

From: Miquel Raynal <miquel.raynal@bootlin.com>

On Wed, 2022-06-22 at 16:05:11 UTC, Jiang Jian wrote:
> there is an unexpected word 'is' in the comments that need to be dropped
> 
> file: drivers/mtd/nand/raw/sm_common.c
> line: 55
> 
> /* NOTE: This layout is is not compatabable with SmartMedia, */
> 
> changed to:
> 
> /* NOTE: This layout is not compatabable with SmartMedia, */
> 
> Signed-off-by: Jiang Jian <jiangjian@cdjrlc.com>

Applied to https://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next, thanks.

Miquel

______________________________________________________
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:[~2022-06-24 18:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-22 16:05 [PATCH] mtd: rawnand: sm_common: drop unexpected word 'is' in the comments Jiang Jian
2022-06-22 16:05 ` Jiang Jian
2022-06-24 18:48 ` miquel.raynal
2022-06-24 18:48   ` miquel.raynal

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.