mtd: nand: denali: fix comment of denali_nand_info::flash_mem

Linux-MTD Mailing List linux-mtd at lists.infradead.org
Wed May 10 19:59:09 PDT 2017


Gitweb:     http://git.infradead.org/?p=mtd-2.6.git;a=commit;h=60ca41f1d9ccf8b57f4ba05d8e8102658a36ef3b
Commit:     60ca41f1d9ccf8b57f4ba05d8e8102658a36ef3b
Parent:     264a7cabb80e8e9f75cee5cecdf0ed45839c4566
Author:     Masahiro Yamada <yamada.masahiro at socionext.com>
AuthorDate: Thu Mar 23 05:07:05 2017 +0900
Committer:  Boris Brezillon <boris.brezillon at free-electrons.com>
CommitDate: Fri Mar 24 09:51:34 2017 +0100

    mtd: nand: denali: fix comment of denali_nand_info::flash_mem
    
    The same comment "Mapped io reg base address" for flash_reg and
    flash_mem probably due to the mistake of copy-paste work.
    Of course, the latter is not the register base address.
    
    Reword the comments using the terminology in the Denali User's Guide.
    
    Signed-off-by: Masahiro Yamada <yamada.masahiro at socionext.com>
    Signed-off-by: Boris Brezillon <boris.brezillon at free-electrons.com>
---
 drivers/mtd/nand/denali.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/mtd/nand/denali.h b/drivers/mtd/nand/denali.h
index 6573ea5..403a7c8 100644
--- a/drivers/mtd/nand/denali.h
+++ b/drivers/mtd/nand/denali.h
@@ -351,8 +351,8 @@ struct denali_nand_info {
 	struct device *dev;
 	int total_used_banks;
 	uint16_t page;
-	void __iomem *flash_reg;  /* Mapped io reg base address */
-	void __iomem *flash_mem;  /* Mapped io reg base address */
+	void __iomem *flash_reg;	/* Register Interface */
+	void __iomem *flash_mem;	/* Host Data/Command Interface */
 
 	/* elements used by ISR */
 	struct completion complete;



More information about the linux-mtd-cvs mailing list