diff options
author | Ben Dooks <ben-linux@fluff.org> | 2010-04-29 18:59:43 +0900 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2010-05-10 11:44:44 +0900 |
commit | c140c98ac161ad270a768126431e36a22f86f6b3 (patch) | |
tree | 0ce2aa19fb1f088d155564b55a444275dce0f4de /arch/arm/mach-s3c2416 | |
parent | 8d6f8658305db969981f64a22296b487ef2f1148 (diff) | |
download | linux-3.10-c140c98ac161ad270a768126431e36a22f86f6b3.tar.gz linux-3.10-c140c98ac161ad270a768126431e36a22f86f6b3.tar.bz2 linux-3.10-c140c98ac161ad270a768126431e36a22f86f6b3.zip |
ARM: S3C2416: Add support for second HSMMC channel
Add support for the second HSMMC channel on the S3C2416.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/mach-s3c2416')
-rw-r--r-- | arch/arm/mach-s3c2416/Kconfig | 1 | ||||
-rw-r--r-- | arch/arm/mach-s3c2416/mach-smdk2416.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c2416/Kconfig b/arch/arm/mach-s3c2416/Kconfig index 677f963ee49..a1308d45b94 100644 --- a/arch/arm/mach-s3c2416/Kconfig +++ b/arch/arm/mach-s3c2416/Kconfig @@ -27,6 +27,7 @@ config MACH_SMDK2416 bool "SMDK2416" select CPU_S3C2416 select S3C_DEV_HSMMC + select S3C_DEV_HSMMC1 help Say Y here if you are using an SMDK2416 diff --git a/arch/arm/mach-s3c2416/mach-smdk2416.c b/arch/arm/mach-s3c2416/mach-smdk2416.c index 8c9aed69d41..a51973c7334 100644 --- a/arch/arm/mach-s3c2416/mach-smdk2416.c +++ b/arch/arm/mach-s3c2416/mach-smdk2416.c @@ -112,6 +112,7 @@ static struct platform_device *smdk2416_devices[] __initdata = { &s3c_device_wdt, &s3c_device_i2c0, &s3c_device_hsmmc0, + &s3c_device_hsmmc1, }; static void __init smdk2416_map_io(void) |