Commit 6bfe4f74 authored by Ulf Hansson's avatar Ulf Hansson
Browse files

mmc: dw_mmc: Drop redundant call to ->card_event callback



The ->card_event callback isn't being used by any of the dw_mmc variants.
It's likely a leftover from an earlier change, hence let's just drop the
redundant call to it.

Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
Reviewed-by: default avatarJaehoon Chung <jh80.chung@samsung.com>
parent e9ce2ce1
Loading
Loading
Loading
Loading
+0 −2
Original line number Original line Diff line number Diff line
@@ -2606,8 +2606,6 @@ static void dw_mci_handle_cd(struct dw_mci *host)
{
{
	struct dw_mci_slot *slot = host->slot;
	struct dw_mci_slot *slot = host->slot;


	if (slot->mmc->ops->card_event)
		slot->mmc->ops->card_event(slot->mmc);
	mmc_detect_change(slot->mmc,
	mmc_detect_change(slot->mmc,
		msecs_to_jiffies(host->pdata->detect_delay_ms));
		msecs_to_jiffies(host->pdata->detect_delay_ms));
}
}