Searched refs:UNSTUFF_BITS (Results 1 – 2 of 2) sorted by relevance
/drivers/mmc/core/ |
D | sd.c | 60 #define UNSTUFF_BITS(resp,start,size) \ macro 99 card->cid.manfid = UNSTUFF_BITS(resp, 120, 8); in mmc_decode_cid() 100 card->cid.oemid = UNSTUFF_BITS(resp, 104, 16); in mmc_decode_cid() 101 card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8); in mmc_decode_cid() 102 card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8); in mmc_decode_cid() 103 card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8); in mmc_decode_cid() 104 card->cid.prod_name[3] = UNSTUFF_BITS(resp, 72, 8); in mmc_decode_cid() 105 card->cid.prod_name[4] = UNSTUFF_BITS(resp, 64, 8); in mmc_decode_cid() 106 card->cid.hwrev = UNSTUFF_BITS(resp, 60, 4); in mmc_decode_cid() 107 card->cid.fwrev = UNSTUFF_BITS(resp, 56, 4); in mmc_decode_cid() [all …]
|
D | mmc.c | 55 #define UNSTUFF_BITS(resp,start,size) \ macro 89 card->cid.manfid = UNSTUFF_BITS(resp, 104, 24); in mmc_decode_cid() 90 card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8); in mmc_decode_cid() 91 card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8); in mmc_decode_cid() 92 card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8); in mmc_decode_cid() 93 card->cid.prod_name[3] = UNSTUFF_BITS(resp, 72, 8); in mmc_decode_cid() 94 card->cid.prod_name[4] = UNSTUFF_BITS(resp, 64, 8); in mmc_decode_cid() 95 card->cid.prod_name[5] = UNSTUFF_BITS(resp, 56, 8); in mmc_decode_cid() 96 card->cid.prod_name[6] = UNSTUFF_BITS(resp, 48, 8); in mmc_decode_cid() 97 card->cid.hwrev = UNSTUFF_BITS(resp, 44, 4); in mmc_decode_cid() [all …]
|