mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 13:11:45 +00:00
c4ffccddd5
This patch adds the Kconfig and Makefile for the new S5P6440 machine and platform directories. It also updates arch/arm Kconfig and Makefiles to include the support for the new S5P6440 CPU. Signed-off-by: Kukjin Kim <kgene.kim@samsung.com> Signed-off-by: Ben Dooks <ben-linux@fluff.org>
24 lines
383 B
Plaintext
24 lines
383 B
Plaintext
# arch/arm/mach-s5p6440/Kconfig
|
|
#
|
|
# Copyright (c) 2009 Samsung Electronics Co., Ltd.
|
|
# http://www.samsung.com/
|
|
#
|
|
# Licensed under GPLv2
|
|
|
|
if ARCH_S5P6440
|
|
|
|
config CPU_S5P6440
|
|
bool
|
|
select CPU_S5P6440_INIT
|
|
select CPU_S5P6440_CLOCK
|
|
help
|
|
Enable S5P6440 CPU support
|
|
|
|
config MACH_SMDK6440
|
|
bool "SMDK6440"
|
|
select CPU_S5P6440
|
|
help
|
|
Machine support for the Samsung SMDK6440
|
|
|
|
endif
|