]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - drivers/mmc/mmc.c
mmc: set rca to 1 for MMC cards
[people/ms/u-boot.git] / drivers / mmc / mmc.c
index c6a1c23fbf1cdf268d79bf1da3a7a3ed80dd220c..7efc2bedbe1188821926ed98f9e599a319f3e39d 100644 (file)
@@ -430,7 +430,7 @@ int mmc_complete_op_cond(struct mmc *mmc)
        mmc->ocr = cmd.response[0];
 
        mmc->high_capacity = ((mmc->ocr & OCR_HCS) == OCR_HCS);
-       mmc->rca = 0;
+       mmc->rca = 1;
 
        return 0;
 }