diff options
author | Alexander Tarasikov <alexander.tarasikov@gmail.com> | 2011-08-21 07:52:44 -0400 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2011-10-26 15:43:36 -0400 |
commit | e91957e70d2aea529ff2055b8fbd575f2d7b8c3b (patch) | |
tree | 0ca76c59c04fcc10ad803b4b1312754670ed707b /drivers | |
parent | 435f3e385962e2b34855e9b34f8b95717c1016a2 (diff) |
msm: Implement init_card operation for MSM SDCC
This allows boards with non-standard sdio cards to fill the CIS/CCCR data.
It is particularly important for old msm72k boards using wl1251.
Also drop the obsolete embedded_sdio_data structure from the header
as it was intended to surve a similiar purpose but was not implemented.
Signed-off-by: Alexander Tarasikov <alexander.tarasikov@gmail.com>
Acked-by: Sahitya Tummala <stummala@codeaurora.org>
[davidb: minor formatting cleanup]
Signed-off-by: David Brown <davidb@codeaurora.org>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mmc/host/msm_sdcc.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/mmc/host/msm_sdcc.c b/drivers/mmc/host/msm_sdcc.c index d06539dff7cc..cfe0c893ef04 100644 --- a/drivers/mmc/host/msm_sdcc.c +++ b/drivers/mmc/host/msm_sdcc.c | |||
@@ -1052,10 +1052,19 @@ static void msmsdcc_enable_sdio_irq(struct mmc_host *mmc, int enable) | |||
1052 | spin_unlock_irqrestore(&host->lock, flags); | 1052 | spin_unlock_irqrestore(&host->lock, flags); |
1053 | } | 1053 | } |
1054 | 1054 | ||
1055 | static void msmsdcc_init_card(struct mmc_host *mmc, struct mmc_card *card) | ||
1056 | { | ||
1057 | struct msmsdcc_host *host = mmc_priv(mmc); | ||
1058 | |||
1059 | if (host->plat->init_card) | ||
1060 | host->plat->init_card(card); | ||
1061 | } | ||
1062 | |||
1055 | static const struct mmc_host_ops msmsdcc_ops = { | 1063 | static const struct mmc_host_ops msmsdcc_ops = { |
1056 | .request = msmsdcc_request, | 1064 | .request = msmsdcc_request, |
1057 | .set_ios = msmsdcc_set_ios, | 1065 | .set_ios = msmsdcc_set_ios, |
1058 | .enable_sdio_irq = msmsdcc_enable_sdio_irq, | 1066 | .enable_sdio_irq = msmsdcc_enable_sdio_irq, |
1067 | .init_card = msmsdcc_init_card, | ||
1059 | }; | 1068 | }; |
1060 | 1069 | ||
1061 | static void | 1070 | static void |