diff options
author | Ben Dooks <ben-linux@fluff.org> | 2008-10-31 16:14:38 +0000 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2008-12-15 23:39:34 +0000 |
commit | 5cc7fd88fc96072c333184ff359c818665ce2506 (patch) | |
tree | 5a91059f40729d6581bc477c0ef4421b681f42b7 /arch/arm/mach-s3c6410/cpu.c | |
parent | ea522c7a54a1422b3ce8a1b9888f2108541ba047 (diff) |
[ARM] S3C6410: Add helper for setting SDHCI device information
Add the necessary helper functions for setting up the SDHCI
device information.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/mach-s3c6410/cpu.c')
-rw-r--r-- | arch/arm/mach-s3c6410/cpu.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c6410/cpu.c b/arch/arm/mach-s3c6410/cpu.c index 975cf88f0e8..84fb65b5999 100644 --- a/arch/arm/mach-s3c6410/cpu.c +++ b/arch/arm/mach-s3c6410/cpu.c @@ -35,6 +35,7 @@ #include <plat/cpu.h> #include <plat/devs.h> #include <plat/clock.h> +#include <plat/sdhci.h> #include <plat/s3c6400.h> #include <plat/s3c6410.h> @@ -51,6 +52,9 @@ static struct map_desc s3c6410_iodesc[] __initdata = { void __init s3c6410_map_io(void) { iotable_init(s3c6410_iodesc, ARRAY_SIZE(s3c6410_iodesc)); + + /* initialise device information early */ + s3c6410_default_sdhci0(); } void __init s3c6410_init_clocks(int xtal) |