diff options
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/plat-samsung/include/plat/sdhci.h | 1 | ||||
-rw-r--r-- | arch/arm/plat-samsung/platformdata.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/plat-samsung/include/plat/sdhci.h b/arch/arm/plat-samsung/include/plat/sdhci.h index 656dc00d30ed..f82f888b91a9 100644 --- a/arch/arm/plat-samsung/include/plat/sdhci.h +++ b/arch/arm/plat-samsung/include/plat/sdhci.h | |||
@@ -63,6 +63,7 @@ enum clk_types { | |||
63 | struct s3c_sdhci_platdata { | 63 | struct s3c_sdhci_platdata { |
64 | unsigned int max_width; | 64 | unsigned int max_width; |
65 | unsigned int host_caps; | 65 | unsigned int host_caps; |
66 | unsigned int pm_caps; | ||
66 | enum cd_types cd_type; | 67 | enum cd_types cd_type; |
67 | enum clk_types clk_type; | 68 | enum clk_types clk_type; |
68 | 69 | ||
diff --git a/arch/arm/plat-samsung/platformdata.c b/arch/arm/plat-samsung/platformdata.c index ceb9fa3a80c0..0f707184eae0 100644 --- a/arch/arm/plat-samsung/platformdata.c +++ b/arch/arm/plat-samsung/platformdata.c | |||
@@ -53,6 +53,8 @@ void s3c_sdhci_set_platdata(struct s3c_sdhci_platdata *pd, | |||
53 | set->cfg_gpio = pd->cfg_gpio; | 53 | set->cfg_gpio = pd->cfg_gpio; |
54 | if (pd->host_caps) | 54 | if (pd->host_caps) |
55 | set->host_caps |= pd->host_caps; | 55 | set->host_caps |= pd->host_caps; |
56 | if (pd->pm_caps) | ||
57 | set->pm_caps |= pd->pm_caps; | ||
56 | if (pd->clk_type) | 58 | if (pd->clk_type) |
57 | set->clk_type = pd->clk_type; | 59 | set->clk_type = pd->clk_type; |
58 | } | 60 | } |