We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b44f9da commit 421b605Copy full SHA for 421b605
drivers/mmc/core/mmc.c
@@ -104,7 +104,7 @@ static int mmc_decode_cid(struct mmc_card *card)
104
case 3: /* MMC v3.1 - v3.3 */
105
case 4: /* MMC v4 */
106
card->cid.manfid = UNSTUFF_BITS(resp, 120, 8);
107
- card->cid.oemid = UNSTUFF_BITS(resp, 104, 8);
+ card->cid.oemid = UNSTUFF_BITS(resp, 104, 16);
108
card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8);
109
card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8);
110
card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8);
0 commit comments