mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-18 01:34:14 +08:00
d8653d9f65
This patch moves the dependency of watchdog timer driver from MACH_XXX(board) to ARCH_XXX(SoC). This will enable all machines using Samsung S3C64XX and S5P SoCs to use the WDT driver by default. Signed-off-by: Banajit Goswami <banajit.g@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com> Conflicts: arch/arm/Kconfig arch/arm/mach-s3c64xx/Kconfig arch/arm/mach-s5p6442/Kconfig arch/arm/mach-s5pc100/Kconfig
27 lines
428 B
Plaintext
27 lines
428 B
Plaintext
# arch/arm/mach-s5p6442/Kconfig
|
|
#
|
|
# Copyright (c) 2010 Samsung Electronics Co., Ltd.
|
|
# http://www.samsung.com/
|
|
#
|
|
# Licensed under GPLv2
|
|
|
|
# Configuration options for the S5P6442
|
|
|
|
if ARCH_S5P6442
|
|
|
|
config CPU_S5P6442
|
|
bool
|
|
select PLAT_S5P
|
|
select S3C_PL330_DMA
|
|
help
|
|
Enable S5P6442 CPU support
|
|
|
|
config MACH_SMDK6442
|
|
bool "SMDK6442"
|
|
select CPU_S5P6442
|
|
select S3C_DEV_WDT
|
|
help
|
|
Machine support for Samsung SMDK6442
|
|
|
|
endif
|