Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1418496 > unrolled thread
| Started by | Franklin S Cooper Jr <fcooper@ti.com> |
|---|---|
| First post | 2016-06-09 19:10 +0200 |
| Last post | 2016-06-09 20:50 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 4/6] mtd: nand: Add OMAP_GPMC as a dependency to MTD_NAND_OMAP2 Franklin S Cooper Jr <fcooper@ti.com> - 2016-06-09 19:10 +0200
Re: [PATCH 4/6] mtd: nand: Add OMAP_GPMC as a dependency to MTD_NAND_OMAP2 Boris Brezillon <boris.brezillon@free-electrons.com> - 2016-06-09 20:50 +0200
| From | Franklin S Cooper Jr <fcooper@ti.com> |
|---|---|
| Date | 2016-06-09 19:10 +0200 |
| Subject | [PATCH 4/6] mtd: nand: Add OMAP_GPMC as a dependency to MTD_NAND_OMAP2 |
| Message-ID | <rIbCW-S9-27@gated-at.bofh.it> |
OMAP 2 NAND depends on the GPMC driver. Therefore, insure that the OMAP
GPMC config is selected before enabling the OMAP 2 NAND driver.
Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com>
---
drivers/mtd/nand/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mtd/nand/Kconfig b/drivers/mtd/nand/Kconfig
index f05e0e9..e24404f 100644
--- a/drivers/mtd/nand/Kconfig
+++ b/drivers/mtd/nand/Kconfig
@@ -89,7 +89,7 @@ config MTD_NAND_AMS_DELTA
config MTD_NAND_OMAP2
tristate "NAND Flash device on OMAP2, OMAP3 and OMAP4"
- depends on ARCH_OMAP2PLUS
+ depends on ARCH_OMAP2PLUS && OMAP_GPMC
help
Support for NAND flash on Texas Instruments OMAP2, OMAP3 and OMAP4
platforms.
--
2.7.0
[toc] | [next] | [standalone]
| From | Boris Brezillon <boris.brezillon@free-electrons.com> |
|---|---|
| Date | 2016-06-09 20:50 +0200 |
| Subject | Re: [PATCH 4/6] mtd: nand: Add OMAP_GPMC as a dependency to MTD_NAND_OMAP2 |
| Message-ID | <rIdbH-1L0-7@gated-at.bofh.it> |
| In reply to | #1418496 |
On Thu, 9 Jun 2016 12:02:55 -0500 Franklin S Cooper Jr <fcooper@ti.com> wrote: > OMAP 2 NAND depends on the GPMC driver. Therefore, insure that the OMAP > GPMC config is selected before enabling the OMAP 2 NAND driver. > > Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com> > --- > drivers/mtd/nand/Kconfig | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/mtd/nand/Kconfig b/drivers/mtd/nand/Kconfig > index f05e0e9..e24404f 100644 > --- a/drivers/mtd/nand/Kconfig > +++ b/drivers/mtd/nand/Kconfig > @@ -89,7 +89,7 @@ config MTD_NAND_AMS_DELTA > > config MTD_NAND_OMAP2 > tristate "NAND Flash device on OMAP2, OMAP3 and OMAP4" > - depends on ARCH_OMAP2PLUS > + depends on ARCH_OMAP2PLUS && OMAP_GPMC If you add depends on ARCH_OMAP2PLUS in the OMAP_GPMC driver, you can just drop the ARCH_OMAP2PLUS dependency here. > help > Support for NAND flash on Texas Instruments OMAP2, OMAP3 and OMAP4 > platforms. -- Boris Brezillon, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web