Przeglądaj źródła

ARM: s3c24xx: allow selecting S3C2440_XTAL_16934400 for s3c2442

The S3C2440_XTAL_16934400 and S3C2440_XTAL_12000000 symbols are used
for both s3c2442 and s3c2440, but Kconfig only allows it to be selected
if CPU_S3C2440 is enabled, which can lead to a warning otherwise:

warning: (MACH_RX1950) selects S3C2440_XTAL_16934400 which has unmet direct dependencies (ARCH_S3C24XX && CPU_S3C2440)

This changes the dependencies to make it possible also for CPU_S3C2442-only
configurations.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Arnd Bergmann 9 lat temu
rodzic
commit
16560854d0
1 zmienionych plików z 4 dodań i 1 usunięć
  1. 4 1
      arch/arm/mach-s3c24xx/Kconfig

+ 4 - 1
arch/arm/mach-s3c24xx/Kconfig

@@ -405,7 +405,7 @@ config MACH_S3C2416_DT
 
 
 endif	# CPU_S3C2416
 endif	# CPU_S3C2416
 
 
-if CPU_S3C2440
+if CPU_S3C2440 || CPU_S3C2442
 
 
 config S3C2440_XTAL_12000000
 config S3C2440_XTAL_12000000
 	bool
 	bool
@@ -432,6 +432,9 @@ config S3C2440_PLL_16934400
 	default y if S3C24XX_PLL
 	default y if S3C24XX_PLL
 	help
 	help
 	  PLL tables for S3C2440 or S3C2442 CPUs with 16.934MHz crystals.
 	  PLL tables for S3C2440 or S3C2442 CPUs with 16.934MHz crystals.
+endif
+
+if CPU_S3C2440
 
 
 comment "S3C2440 Boards"
 comment "S3C2440 Boards"