* [PATCH] MTD: Nand: use MTD_NAND_OMAP2 for OMAP4
@ 2011-07-15 10:52 Jan Weitzel
2011-07-20 4:53 ` Artem Bityutskiy
0 siblings, 1 reply; 4+ messages in thread
From: Jan Weitzel @ 2011-07-15 10:52 UTC (permalink / raw)
To: linux-omap, linux-mtd; +Cc: Artem.Bityutskiy, vimalsingh, Jan Weitzel
use MTD_NAND_OMAP2 also for OMAP4 arch.
testes wit omap4430
Signed-off-by: Jan Weitzel <j.weitzel@phytec.de>
---
drivers/mtd/nand/Kconfig | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/mtd/nand/Kconfig b/drivers/mtd/nand/Kconfig
index 4c34252..40e64b8 100644
--- a/drivers/mtd/nand/Kconfig
+++ b/drivers/mtd/nand/Kconfig
@@ -117,9 +117,10 @@ config MTD_NAND_AMS_DELTA
config MTD_NAND_OMAP2
tristate "NAND Flash device on OMAP2 and OMAP3"
- depends on ARM && (ARCH_OMAP2 || ARCH_OMAP3)
+ depends on ARM && (ARCH_OMAP2 || ARCH_OMAP3 || ARCH_OMAP4)
help
- Support for NAND flash on Texas Instruments OMAP2 and OMAP3 platforms.
+ Support for NAND flash on Texas Instruments OMAP2, OMAP3 and OMAP4
+ platforms.
config MTD_NAND_IDS
tristate
--
1.7.0.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] MTD: Nand: use MTD_NAND_OMAP2 for OMAP4
2011-07-15 10:52 [PATCH] MTD: Nand: use MTD_NAND_OMAP2 for OMAP4 Jan Weitzel
@ 2011-07-20 4:53 ` Artem Bityutskiy
2011-07-20 7:28 ` [PATCH v2] " Jan Weitzel
0 siblings, 1 reply; 4+ messages in thread
From: Artem Bityutskiy @ 2011-07-20 4:53 UTC (permalink / raw)
To: Jan Weitzel; +Cc: linux-omap, linux-mtd, Artem.Bityutskiy, vimalsingh
On Fri, 2011-07-15 at 12:52 +0200, Jan Weitzel wrote:
> config MTD_NAND_OMAP2
> tristate "NAND Flash device on OMAP2 and OMAP3"
I guess you need to add OMAP4 to the string above as well.
> - depends on ARM && (ARCH_OMAP2 || ARCH_OMAP3)
> + depends on ARM && (ARCH_OMAP2 || ARCH_OMAP3 || ARCH_OMAP4)
> help
> - Support for NAND flash on Texas Instruments OMAP2 and OMAP3 platforms.
> + Support for NAND flash on Texas Instruments OMAP2, OMAP3 and OMAP4
> + platforms.
--
Best Regards,
Artem Bityutskiy
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2] MTD: Nand: use MTD_NAND_OMAP2 for OMAP4
2011-07-20 4:53 ` Artem Bityutskiy
@ 2011-07-20 7:28 ` Jan Weitzel
2011-07-22 7:58 ` Artem Bityutskiy
0 siblings, 1 reply; 4+ messages in thread
From: Jan Weitzel @ 2011-07-20 7:28 UTC (permalink / raw)
To: linux-omap, linux-mtd; +Cc: Artem.Bityutskiy, vimalsingh, Jan Weitzel
use MTD_NAND_OMAP2 also for OMAP4 arch.
testes wit omap4430
Signed-off-by: Jan Weitzel <j.weitzel@phytec.de>
---
v2: add menuconfig description
drivers/mtd/nand/Kconfig | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/drivers/mtd/nand/Kconfig b/drivers/mtd/nand/Kconfig
index 4c34252..2a7d305 100644
--- a/drivers/mtd/nand/Kconfig
+++ b/drivers/mtd/nand/Kconfig
@@ -116,10 +116,11 @@ config MTD_NAND_AMS_DELTA
Support for NAND flash on Amstrad E3 (Delta).
config MTD_NAND_OMAP2
- tristate "NAND Flash device on OMAP2 and OMAP3"
- depends on ARM && (ARCH_OMAP2 || ARCH_OMAP3)
+ tristate "NAND Flash device on OMAP2, OMAP3 and OMAP4"
+ depends on ARM && (ARCH_OMAP2 || ARCH_OMAP3 || ARCH_OMAP4)
help
- Support for NAND flash on Texas Instruments OMAP2 and OMAP3 platforms.
+ Support for NAND flash on Texas Instruments OMAP2, OMAP3 and OMAP4
+ platforms.
config MTD_NAND_IDS
tristate
--
1.7.0.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2] MTD: Nand: use MTD_NAND_OMAP2 for OMAP4
2011-07-20 7:28 ` [PATCH v2] " Jan Weitzel
@ 2011-07-22 7:58 ` Artem Bityutskiy
0 siblings, 0 replies; 4+ messages in thread
From: Artem Bityutskiy @ 2011-07-22 7:58 UTC (permalink / raw)
To: Jan Weitzel; +Cc: linux-omap, linux-mtd, Artem.Bityutskiy, vimalsingh
On Wed, 2011-07-20 at 09:28 +0200, Jan Weitzel wrote:
> use MTD_NAND_OMAP2 also for OMAP4 arch.
> testes wit omap4430
>
> Signed-off-by: Jan Weitzel <j.weitzel@phytec.de>
> ---
> v2: add menuconfig description
Pushed to l2-mtd-2.6.git, thanks.
--
Best Regards,
Artem Bityutskiy
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-07-22 7:57 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-15 10:52 [PATCH] MTD: Nand: use MTD_NAND_OMAP2 for OMAP4 Jan Weitzel
2011-07-20 4:53 ` Artem Bityutskiy
2011-07-20 7:28 ` [PATCH v2] " Jan Weitzel
2011-07-22 7:58 ` Artem Bityutskiy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).