diff options
author | Arnd Bergmann <arnd@arndb.de> | 2015-02-26 15:50:25 -0500 |
---|---|---|
committer | Kukjin Kim <kgene@kernel.org> | 2015-02-26 15:50:25 -0500 |
commit | a11176e65b8727158bc355ca0cb00bf70cd69e48 (patch) | |
tree | b40208440969aa1ab30a8410b0d6b72babe49158 | |
parent | 1fe054e71a895c682f1cd36071ff3fd0c7bc9cff (diff) |
ARM: S3C24XX: avoid a Kconfig warning
The PM_H1940 symbol is used by two platforms: RX3715 and RX1950. However,
it is hidden inside of the the CPU_S3C2410 conditional, which is only
set by one of them, so we get a lot of randconfig warnings like
warning: (MACH_RX3715 && MACH_RX1950) selects PM_H1940 which has unmet direct dependencies (ARCH_S3C24XX && CPU_S3C2410)
This moves it outside of the conditional to remove the warnings.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Kukjin Kim <kgene@kernel.org>
-rw-r--r-- | arch/arm/mach-s3c24xx/Kconfig | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/arm/mach-s3c24xx/Kconfig b/arch/arm/mach-s3c24xx/Kconfig index a6d3b5bcc4c2..23bec3a85b22 100644 --- a/arch/arm/mach-s3c24xx/Kconfig +++ b/arch/arm/mach-s3c24xx/Kconfig | |||
@@ -228,11 +228,6 @@ config H1940BT | |||
228 | This is a simple driver that is able to control | 228 | This is a simple driver that is able to control |
229 | the state of built in bluetooth chip on h1940. | 229 | the state of built in bluetooth chip on h1940. |
230 | 230 | ||
231 | config PM_H1940 | ||
232 | bool | ||
233 | help | ||
234 | Internal node for H1940 and related PM | ||
235 | |||
236 | config MACH_N30 | 231 | config MACH_N30 |
237 | bool "Acer N30 family" | 232 | bool "Acer N30 family" |
238 | select S3C_DEV_NAND | 233 | select S3C_DEV_NAND |
@@ -585,6 +580,11 @@ config MACH_SMDK2443 | |||
585 | 580 | ||
586 | endif # CPU_S3C2443 | 581 | endif # CPU_S3C2443 |
587 | 582 | ||
583 | config PM_H1940 | ||
584 | bool | ||
585 | help | ||
586 | Internal node for H1940 and related PM | ||
587 | |||
588 | endmenu # SAMSUNG S3C24XX SoCs Support | 588 | endmenu # SAMSUNG S3C24XX SoCs Support |
589 | 589 | ||
590 | endif # ARCH_S3C24XX | 590 | endif # ARCH_S3C24XX |