Commit 4d219f4c authored by H. Nikolaus Schaller's avatar H. Nikolaus Schaller Committed by Ulf Hansson

mmc: host: omap-hsmmc: remove init_card pdata callback from pdata

Now as we have removed the last user (pandora_wl1251_init_card)
of this callback, we can remove it from the hsmmc code.
Suggested-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
Signed-off-by: default avatarH. Nikolaus Schaller <hns@goldelico.com>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 5d6bed6f
...@@ -1510,10 +1510,7 @@ static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card) ...@@ -1510,10 +1510,7 @@ static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
{ {
struct omap_hsmmc_host *host = mmc_priv(mmc); struct omap_hsmmc_host *host = mmc_priv(mmc);
if (mmc_pdata(host)->init_card) if (card->type == MMC_TYPE_SDIO || card->type == MMC_TYPE_SD_COMBO) {
mmc_pdata(host)->init_card(card);
else if (card->type == MMC_TYPE_SDIO ||
card->type == MMC_TYPE_SD_COMBO) {
struct device_node *np = mmc_dev(mmc)->of_node; struct device_node *np = mmc_dev(mmc)->of_node;
/* /*
......
...@@ -67,9 +67,6 @@ struct omap_hsmmc_platform_data { ...@@ -67,9 +67,6 @@ struct omap_hsmmc_platform_data {
/* string specifying a particular variant of hardware */ /* string specifying a particular variant of hardware */
char *version; char *version;
/* if we have special card, init it using this callback */
void (*init_card)(struct mmc_card *card);
const char *name; const char *name;
u32 ocr_mask; u32 ocr_mask;
}; };
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment