summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2017-03-22 16:07:05 -0400
committerBoris Brezillon <boris.brezillon@free-electrons.com>2017-03-24 04:51:34 -0400
commit60ca41f1d9ccf8b57f4ba05d8e8102658a36ef3b (patch)
tree047023654343dba2a7a82f706886104e0a380010 /drivers/mtd/nand
parent264a7cabb80e8e9f75cee5cecdf0ed45839c4566 (diff)
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@socionext.com> Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Diffstat (limited to 'drivers/mtd/nand')
-rw-r--r--drivers/mtd/nand/denali.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/nand/denali.h b/drivers/mtd/nand/denali.h
index 6573ea59d4ff..403a7c82d1c7 100644
--- a/drivers/mtd/nand/denali.h
+++ b/drivers/mtd/nand/denali.h
@@ -351,8 +351,8 @@ struct denali_nand_info {
351 struct device *dev; 351 struct device *dev;
352 int total_used_banks; 352 int total_used_banks;
353 uint16_t page; 353 uint16_t page;
354 void __iomem *flash_reg; /* Mapped io reg base address */ 354 void __iomem *flash_reg; /* Register Interface */
355 void __iomem *flash_mem; /* Mapped io reg base address */ 355 void __iomem *flash_mem; /* Host Data/Command Interface */
356 356
357 /* elements used by ISR */ 357 /* elements used by ISR */
358 struct completion complete; 358 struct completion complete;