Commit bd7342fe authored by Yue Hu's avatar Yue Hu Committed by Ulf Hansson
Browse files

mmc: core: remove unused host parameter of mmc_sd_get_csd()



The host parameter is not used in the body of mmc_sd_get_csd(),
so let's remove it. Update related code at the same time.

Signed-off-by: default avatarYue Hu <huyue2@yulong.com>
Link: https://lore.kernel.org/r/20210118084520.241-1-zbestahu@gmail.com


Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 37af07d9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -860,7 +860,7 @@ int mmc_sd_get_cid(struct mmc_host *host, u32 ocr, u32 *cid, u32 *rocr)
	return err;
}

int mmc_sd_get_csd(struct mmc_host *host, struct mmc_card *card)
int mmc_sd_get_csd(struct mmc_card *card)
{
	int err;

@@ -1046,7 +1046,7 @@ static int mmc_sd_init_card(struct mmc_host *host, u32 ocr,
	}

	if (!oldcard) {
		err = mmc_sd_get_csd(host, card);
		err = mmc_sd_get_csd(card);
		if (err)
			goto free_card;

+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ struct mmc_host;
struct mmc_card;

int mmc_sd_get_cid(struct mmc_host *host, u32 ocr, u32 *cid, u32 *rocr);
int mmc_sd_get_csd(struct mmc_host *host, struct mmc_card *card);
int mmc_sd_get_csd(struct mmc_card *card);
void mmc_decode_cid(struct mmc_card *card);
int mmc_sd_setup_card(struct mmc_host *host, struct mmc_card *card,
	bool reinit);
+1 −1
Original line number Diff line number Diff line
@@ -751,7 +751,7 @@ static int mmc_sdio_init_card(struct mmc_host *host, u32 ocr,
	 * Read CSD, before selecting the card
	 */
	if (!oldcard && card->type == MMC_TYPE_SD_COMBO) {
		err = mmc_sd_get_csd(host, card);
		err = mmc_sd_get_csd(card);
		if (err)
			goto remove;