diff options
author | Jeongbae Seo <jeongbae.seo@samsung.com> | 2010-10-08 18:03:27 +0900 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2010-10-25 16:02:47 +0900 |
commit | 28c80aa707156d83f679442ea745db301316a4ea (patch) | |
tree | 18dcca97a9da9973cf698feb79c05f1e1a3eb212 /arch/arm/plat-samsung/dev-hsmmc1.c | |
parent | 40fcd5b9bf27a8ea78df434a92f3d87533a13fc4 (diff) | |
download | linux-3.10-28c80aa707156d83f679442ea745db301316a4ea.tar.gz linux-3.10-28c80aa707156d83f679442ea745db301316a4ea.tar.bz2 linux-3.10-28c80aa707156d83f679442ea745db301316a4ea.zip |
ARM: SAMSUNG: Add clock types into platform data
This patch adds clock types into platform data to support
external clock divider instead of internal clock divider.
It is defined that what kinds of clock type is used in machine.
Signed-off-by: Jeongbae Seo <jeongbae.seo@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/plat-samsung/dev-hsmmc1.c')
-rw-r--r-- | arch/arm/plat-samsung/dev-hsmmc1.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/plat-samsung/dev-hsmmc1.c b/arch/arm/plat-samsung/dev-hsmmc1.c index 9b52828644d..2497321f08d 100644 --- a/arch/arm/plat-samsung/dev-hsmmc1.c +++ b/arch/arm/plat-samsung/dev-hsmmc1.c @@ -41,6 +41,7 @@ struct s3c_sdhci_platdata s3c_hsmmc1_def_platdata = { .max_width = 4, .host_caps = (MMC_CAP_4_BIT_DATA | MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED), + .clk_type = S3C_SDHCI_CLK_DIV_INTERNAL, }; struct platform_device s3c_device_hsmmc1 = { @@ -73,4 +74,6 @@ void s3c_sdhci1_set_platdata(struct s3c_sdhci_platdata *pd) set->cfg_card = pd->cfg_card; if (pd->host_caps) set->host_caps |= pd->host_caps; + if (pd->clk_type) + set->clk_type = pd->clk_type; } |