linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] MTD: nand: Making  MTD_NAND_OMAP2 depend on ARCH_OMAP2PLUS
@ 2011-11-15 10:22 Shubhrajyoti D
  2011-11-15 17:52 ` Russell King - ARM Linux
  0 siblings, 1 reply; 5+ messages in thread
From: Shubhrajyoti D @ 2011-11-15 10:22 UTC (permalink / raw)
  To: linux-arm-kernel

Making  MTD_NAND_OMAP2 depend on ARCH_OMAP2PLUS instead of
oring with ARCH2/3/4.

Reported-by: Russell King <linux@arm.linux.org.uk>
Signed-off-by: Shubhrajyoti D <shubhrajyoti@ti.com>
---
 drivers/mtd/nand/Kconfig |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/mtd/nand/Kconfig b/drivers/mtd/nand/Kconfig
index cce7b70..b68dd5e 100644
--- a/drivers/mtd/nand/Kconfig
+++ b/drivers/mtd/nand/Kconfig
@@ -110,7 +110,7 @@ config MTD_NAND_AMS_DELTA
 
 config MTD_NAND_OMAP2
 	tristate "NAND Flash device on OMAP2, OMAP3 and OMAP4"
-	depends on ARM && (ARCH_OMAP2 || ARCH_OMAP3 || ARCH_OMAP4)
+	depends on ARCH_OMAP2PLUS
 	help
           Support for NAND flash on Texas Instruments OMAP2, OMAP3 and OMAP4
 	  platforms.
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH] MTD: nand: Making  MTD_NAND_OMAP2 depend on ARCH_OMAP2PLUS
  2011-11-15 10:22 Shubhrajyoti D
@ 2011-11-15 17:52 ` Russell King - ARM Linux
  2011-11-16  5:19   ` Shubhrajyoti
  0 siblings, 1 reply; 5+ messages in thread
From: Russell King - ARM Linux @ 2011-11-15 17:52 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Nov 15, 2011 at 03:52:36PM +0530, Shubhrajyoti D wrote:
> Making  MTD_NAND_OMAP2 depend on ARCH_OMAP2PLUS instead of
> oring with ARCH2/3/4.
> 
> Reported-by: Russell King <linux@arm.linux.org.uk>

Thanks, but please make this rmk+kernel at arm.linux.org.uk.

> Signed-off-by: Shubhrajyoti D <shubhrajyoti@ti.com>
> ---
>  drivers/mtd/nand/Kconfig |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/mtd/nand/Kconfig b/drivers/mtd/nand/Kconfig
> index cce7b70..b68dd5e 100644
> --- a/drivers/mtd/nand/Kconfig
> +++ b/drivers/mtd/nand/Kconfig
> @@ -110,7 +110,7 @@ config MTD_NAND_AMS_DELTA
>  
>  config MTD_NAND_OMAP2
>  	tristate "NAND Flash device on OMAP2, OMAP3 and OMAP4"
> -	depends on ARM && (ARCH_OMAP2 || ARCH_OMAP3 || ARCH_OMAP4)
> +	depends on ARCH_OMAP2PLUS
>  	help
>            Support for NAND flash on Texas Instruments OMAP2, OMAP3 and OMAP4
>  	  platforms.
> -- 
> 1.7.1
> 
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] MTD: nand: Making  MTD_NAND_OMAP2 depend on ARCH_OMAP2PLUS
@ 2011-11-16  5:18 Shubhrajyoti D
  2011-11-17 22:15 ` Artem Bityutskiy
  0 siblings, 1 reply; 5+ messages in thread
From: Shubhrajyoti D @ 2011-11-16  5:18 UTC (permalink / raw)
  To: linux-arm-kernel

Making  MTD_NAND_OMAP2 depend on ARCH_OMAP2PLUS instead of
oring with ARCH2/3/4.

Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Shubhrajyoti D <shubhrajyoti@ti.com>
---
 drivers/mtd/nand/Kconfig |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/mtd/nand/Kconfig b/drivers/mtd/nand/Kconfig
index cce7b70..b68dd5e 100644
--- a/drivers/mtd/nand/Kconfig
+++ b/drivers/mtd/nand/Kconfig
@@ -110,7 +110,7 @@ config MTD_NAND_AMS_DELTA
 
 config MTD_NAND_OMAP2
 	tristate "NAND Flash device on OMAP2, OMAP3 and OMAP4"
-	depends on ARM && (ARCH_OMAP2 || ARCH_OMAP3 || ARCH_OMAP4)
+	depends on ARCH_OMAP2PLUS
 	help
           Support for NAND flash on Texas Instruments OMAP2, OMAP3 and OMAP4
 	  platforms.
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH] MTD: nand: Making MTD_NAND_OMAP2 depend on ARCH_OMAP2PLUS
  2011-11-15 17:52 ` Russell King - ARM Linux
@ 2011-11-16  5:19   ` Shubhrajyoti
  0 siblings, 0 replies; 5+ messages in thread
From: Shubhrajyoti @ 2011-11-16  5:19 UTC (permalink / raw)
  To: linux-arm-kernel

On Tuesday 15 November 2011 11:22 PM, Russell King - ARM Linux wrote:
> On Tue, Nov 15, 2011 at 03:52:36PM +0530, Shubhrajyoti D wrote:
>> Making  MTD_NAND_OMAP2 depend on ARCH_OMAP2PLUS instead of
>> oring with ARCH2/3/4.
>>
>> Reported-by: Russell King <linux@arm.linux.org.uk>
> Thanks, but please make this rmk+kernel at arm.linux.org.uk.
yes , will correct it.
>> Signed-off-by: Shubhrajyoti D <shubhrajyoti@ti.com>
>> ---
>>  drivers/mtd/nand/Kconfig |    2 +-
>>  1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/drivers/mtd/nand/Kconfig b/drivers/mtd/nand/Kconfig
>> index cce7b70..b68dd5e 100644
>> --- a/drivers/mtd/nand/Kconfig
>> +++ b/drivers/mtd/nand/Kconfig
>> @@ -110,7 +110,7 @@ config MTD_NAND_AMS_DELTA
>>  
>>  config MTD_NAND_OMAP2
>>  	tristate "NAND Flash device on OMAP2, OMAP3 and OMAP4"
>> -	depends on ARM && (ARCH_OMAP2 || ARCH_OMAP3 || ARCH_OMAP4)
>> +	depends on ARCH_OMAP2PLUS
>>  	help
>>            Support for NAND flash on Texas Instruments OMAP2, OMAP3 and OMAP4
>>  	  platforms.
>> -- 
>> 1.7.1
>>
>>
>> _______________________________________________
>> linux-arm-kernel mailing list
>> linux-arm-kernel at lists.infradead.org
>> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] MTD: nand: Making  MTD_NAND_OMAP2 depend on ARCH_OMAP2PLUS
  2011-11-16  5:18 [PATCH] MTD: nand: Making MTD_NAND_OMAP2 depend on ARCH_OMAP2PLUS Shubhrajyoti D
@ 2011-11-17 22:15 ` Artem Bityutskiy
  0 siblings, 0 replies; 5+ messages in thread
From: Artem Bityutskiy @ 2011-11-17 22:15 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, 2011-11-16 at 10:48 +0530, Shubhrajyoti D wrote:
> Making  MTD_NAND_OMAP2 depend on ARCH_OMAP2PLUS instead of
> oring with ARCH2/3/4.
> 
> Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
> Signed-off-by: Shubhrajyoti D <shubhrajyoti@ti.com>

Pushed to l2-mtd-2.6, thanks!

Artem.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-11-17 22:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-16  5:18 [PATCH] MTD: nand: Making MTD_NAND_OMAP2 depend on ARCH_OMAP2PLUS Shubhrajyoti D
2011-11-17 22:15 ` Artem Bityutskiy
  -- strict thread matches above, loose matches on Subject: below --
2011-11-15 10:22 Shubhrajyoti D
2011-11-15 17:52 ` Russell King - ARM Linux
2011-11-16  5:19   ` Shubhrajyoti

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).