mmc: dw_mmc: remove redundant of set_bit and clear_bit
authorShawn Lin <shawn.lin@rock-chips.com>
Fri, 27 May 2016 06:36:40 +0000 (14:36 +0800)
committerUlf Hansson <ulf.hansson@linaro.org>
Mon, 25 Jul 2016 08:34:25 +0000 (10:34 +0200)
dw_mci_get_cd have already dealt with these for
both of internal card-detect and gpio card-detect.

Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/dw_mmc.c

index 8012858..8a2dd04 100644 (file)
@@ -2615,10 +2615,7 @@ static int dw_mci_init_slot(struct dw_mci *host, unsigned int id)
                mmc->max_seg_size = mmc->max_req_size;
        }
 
-       if (dw_mci_get_cd(mmc))
-               set_bit(DW_MMC_CARD_PRESENT, &slot->flags);
-       else
-               clear_bit(DW_MMC_CARD_PRESENT, &slot->flags);
+       dw_mci_get_cd(mmc);
 
        ret = mmc_add_host(mmc);
        if (ret)