diff options
-rw-r--r-- | drivers/mmc/mmc.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c index 830d9ae..2bff97c 100644 --- a/drivers/mmc/mmc.c +++ b/drivers/mmc/mmc.c @@ -1216,6 +1216,11 @@ static int mmc_startup(struct mmc *mmc) case 7: mmc->version = MMC_VERSION_5_0; break; + case 8: + /* FIXME should be 5.1 but no official support in + * uboot now, rollback to 5.0 */ + mmc->version = MMC_VERSION_5_0; + break; } /* The partition data may be non-zero but it is only |