浏览代码

mmc: fix silly copy-and-paste error

Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Pierre Ossman 18 年之前
父节点
当前提交
8c75deae1a
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      drivers/mmc/core/mmc.c

+ 3 - 3
drivers/mmc/core/mmc.c

@@ -237,7 +237,7 @@ out:
  * In the case of a resume, "curcard" will contain the card
  * In the case of a resume, "curcard" will contain the card
  * we're trying to reinitialise.
  * we're trying to reinitialise.
  */
  */
-static int mmc_sd_init_card(struct mmc_host *host, u32 ocr,
+static int mmc_init_card(struct mmc_host *host, u32 ocr,
 	struct mmc_card *oldcard)
 	struct mmc_card *oldcard)
 {
 {
 	struct mmc_card *card;
 	struct mmc_card *card;
@@ -500,7 +500,7 @@ static void mmc_resume(struct mmc_host *host)
 
 
 	mmc_claim_host(host);
 	mmc_claim_host(host);
 
 
-	err = mmc_sd_init_card(host, host->ocr, host->card);
+	err = mmc_init_card(host, host->ocr, host->card);
 	if (err != MMC_ERR_NONE) {
 	if (err != MMC_ERR_NONE) {
 		mmc_remove(host);
 		mmc_remove(host);
 		mmc_detach_bus(host);
 		mmc_detach_bus(host);
@@ -559,7 +559,7 @@ int mmc_attach_mmc(struct mmc_host *host, u32 ocr)
 	/*
 	/*
 	 * Detect and init the card.
 	 * Detect and init the card.
 	 */
 	 */
-	err = mmc_sd_init_card(host, host->ocr, NULL);
+	err = mmc_init_card(host, host->ocr, NULL);
 	if (err != MMC_ERR_NONE)
 	if (err != MMC_ERR_NONE)
 		goto err;
 		goto err;