public inbox for linux-arm-kernel@lists.infradead.org 
 help / color / mirror / Atom feed
* [PATCH v2] ARM: S3C2410: Fix on build warning about dependency in mach-s3c2440/Kconfig
@ 2010-08-13  9:38 Kukjin Kim
  2010-08-14 15:18 ` Ben Dooks
  0 siblings, 1 reply; 2+ messages in thread
From: Kukjin Kim @ 2010-08-13  9:38 UTC (permalink / raw)
  To: linux-arm-kernel

This patch fixes on following build warnings.

warning: (CPU_S3C2440 && ARCH_S3C2410 && S3C2410_DMA) selects S3C2440_DMA which
             has unmet direct dependencies (ARCH_S3C2410 && CPU_S3C24405B)
warning: (CPU_S3C2440 && ARCH_S3C2410 || CPU_S3C2442 && ARCH_S3C2410) selects
             CPU_S3C244X which has unmet direct dependencies (!ARCH_S3C2410)

Signed-off-by: Kukjin Kim <kgene.kim@samsung•com>
Cc: Ben Dooks <ben-linux@fluff•org>
---
Changes since v1:
- Address comments from Uwe :-)

Thanks
Kgene.

 arch/arm/mach-s3c2440/Kconfig |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-s3c2440/Kconfig b/arch/arm/mach-s3c2440/Kconfig
index cd8e7de..f60a370 100644
--- a/arch/arm/mach-s3c2440/Kconfig
+++ b/arch/arm/mach-s3c2440/Kconfig
@@ -30,7 +30,7 @@ config CPU_S3C2442
 
 config CPU_S3C244X
 	bool
-	depends on ARCH_S3C2410 && (CPU_S3C2440 || CPU_S3C2442)
+	depends on CPU_S3C2440 || CPU_S3C2442
 	help
 	  Support for S3C2440 and S3C2442 Samsung Mobile CPU based systems.
 
@@ -72,7 +72,7 @@ config S3C2440_PLL_16934400
 
 config S3C2440_DMA
 	bool
-	depends on ARCH_S3C2410 && CPU_S3C24405B
+	depends on ARCH_S3C2410 || CPU_S3C24405B
 	help
 	  Support for S3C2440 specific DMA code5A
 
-- 
1.6.2.5

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

* [PATCH v2] ARM: S3C2410: Fix on build warning about dependency in mach-s3c2440/Kconfig
  2010-08-13  9:38 [PATCH v2] ARM: S3C2410: Fix on build warning about dependency in mach-s3c2440/Kconfig Kukjin Kim
@ 2010-08-14 15:18 ` Ben Dooks
  0 siblings, 0 replies; 2+ messages in thread
From: Ben Dooks @ 2010-08-14 15:18 UTC (permalink / raw)
  To: linux-arm-kernel

On 13/08/10 10:38, Kukjin Kim wrote:
> This patch fixes on following build warnings.
> 
> warning: (CPU_S3C2440 && ARCH_S3C2410 && S3C2410_DMA) selects S3C2440_DMA which
>              has unmet direct dependencies (ARCH_S3C2410 && CPU_S3C24405B)
> warning: (CPU_S3C2440 && ARCH_S3C2410 || CPU_S3C2442 && ARCH_S3C2410) selects
>              CPU_S3C244X which has unmet direct dependencies (!ARCH_S3C2410)
> 
> Signed-off-by: Kukjin Kim <kgene.kim@samsung•com>
> Cc: Ben Dooks <ben-linux@fluff•org>
> ---
> Changes since v1:
> - Address comments from Uwe :-)
> 
> Thanks
> Kgene.
> 
>  arch/arm/mach-s3c2440/Kconfig |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/arm/mach-s3c2440/Kconfig b/arch/arm/mach-s3c2440/Kconfig
> index cd8e7de..f60a370 100644
> --- a/arch/arm/mach-s3c2440/Kconfig
> +++ b/arch/arm/mach-s3c2440/Kconfig
> @@ -30,7 +30,7 @@ config CPU_S3C2442
>  
>  config CPU_S3C244X
>  	bool
> -	depends on ARCH_S3C2410 && (CPU_S3C2440 || CPU_S3C2442)
> +	depends on CPU_S3C2440 || CPU_S3C2442
>  	help
>  	  Support for S3C2440 and S3C2442 Samsung Mobile CPU based systems.
>  
> @@ -72,7 +72,7 @@ config S3C2440_PLL_16934400
>  
>  config S3C2440_DMA
>  	bool
> -	depends on ARCH_S3C2410 && CPU_S3C24405B
> +	depends on ARCH_S3C2410 || CPU_S3C24405B

Hmm, i think it should be CPU_S3C2440, not sure what
happened to that line


>  	help
>  	  Support for S3C2440 specific DMA code5A
>  

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

end of thread, other threads:[~2010-08-14 15:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-13  9:38 [PATCH v2] ARM: S3C2410: Fix on build warning about dependency in mach-s3c2440/Kconfig Kukjin Kim
2010-08-14 15:18 ` Ben Dooks

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox