Commit 3e44ddd4 authored by Jarkko Lavinen's avatar Jarkko Lavinen Committed by Pierre Ossman

mmc: Accept EXT_CSD rev 1.3 since it is backwards compatible with 1.2

Signed-off-by: default avatarJarkko Lavinen <jarkko.lavinen@nokia.com>
Signed-off-by: default avatarPierre Ossman <drzeus@drzeus.cx>
parent 577c9c45
...@@ -208,7 +208,7 @@ static int mmc_read_ext_csd(struct mmc_card *card) ...@@ -208,7 +208,7 @@ static int mmc_read_ext_csd(struct mmc_card *card)
} }
ext_csd_struct = ext_csd[EXT_CSD_REV]; ext_csd_struct = ext_csd[EXT_CSD_REV];
if (ext_csd_struct > 2) { if (ext_csd_struct > 3) {
printk(KERN_ERR "%s: unrecognised EXT_CSD structure " printk(KERN_ERR "%s: unrecognised EXT_CSD structure "
"version %d\n", mmc_hostname(card->host), "version %d\n", mmc_hostname(card->host),
ext_csd_struct); ext_csd_struct);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment