diff options
-rw-r--r-- | drivers/mtd/nand/Kconfig | 6 | ||||
-rw-r--r-- | drivers/mtd/nand/gpio.c | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/drivers/mtd/nand/Kconfig b/drivers/mtd/nand/Kconfig index 4c51d2c9acc1..7d0150d20432 100644 --- a/drivers/mtd/nand/Kconfig +++ b/drivers/mtd/nand/Kconfig | |||
@@ -75,10 +75,12 @@ config MTD_NAND_DENALI_SCRATCH_REG_ADDR | |||
75 | boards, the scratch register is at 0xFF108018. | 75 | boards, the scratch register is at 0xFF108018. |
76 | 76 | ||
77 | config MTD_NAND_GPIO | 77 | config MTD_NAND_GPIO |
78 | tristate "GPIO NAND Flash driver" | 78 | tristate "GPIO assisted NAND Flash driver" |
79 | depends on GPIOLIB | 79 | depends on GPIOLIB |
80 | help | 80 | help |
81 | This enables a GPIO based NAND flash driver. | 81 | This enables a NAND flash driver where control signals are |
82 | connected to GPIO pins, and commands and data are communicated | ||
83 | via a memory mapped interface. | ||
82 | 84 | ||
83 | config MTD_NAND_AMS_DELTA | 85 | config MTD_NAND_AMS_DELTA |
84 | tristate "NAND Flash device on Amstrad E3" | 86 | tristate "NAND Flash device on Amstrad E3" |
diff --git a/drivers/mtd/nand/gpio.c b/drivers/mtd/nand/gpio.c index 117ce333fdd4..226eda6f2eee 100644 --- a/drivers/mtd/nand/gpio.c +++ b/drivers/mtd/nand/gpio.c | |||
@@ -8,7 +8,9 @@ | |||
8 | * | 8 | * |
9 | * © 2004 Simtec Electronics | 9 | * © 2004 Simtec Electronics |
10 | * | 10 | * |
11 | * Device driver for NAND connected via GPIO | 11 | * Device driver for NAND flash that uses a memory mapped interface to |
12 | * read/write the NAND commands and data, and GPIO pins for control signals | ||
13 | * (the DT binding refers to this as "GPIO assisted NAND flash") | ||
12 | * | 14 | * |
13 | * This program is free software; you can redistribute it and/or modify | 15 | * This program is free software; you can redistribute it and/or modify |
14 | * it under the terms of the GNU General Public License version 2 as | 16 | * it under the terms of the GNU General Public License version 2 as |