Home
last modified time | relevance | path

Searched refs:UNSTUFF_BITS (Results 1 – 2 of 2) sorted by relevance

/drivers/mmc/core/
Dsd.c56 #define UNSTUFF_BITS(resp,start,size) \ macro
83 card->cid.manfid = UNSTUFF_BITS(resp, 120, 8); in mmc_decode_cid()
84 card->cid.oemid = UNSTUFF_BITS(resp, 104, 16); in mmc_decode_cid()
85 card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8); in mmc_decode_cid()
86 card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8); in mmc_decode_cid()
87 card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8); in mmc_decode_cid()
88 card->cid.prod_name[3] = UNSTUFF_BITS(resp, 72, 8); in mmc_decode_cid()
89 card->cid.prod_name[4] = UNSTUFF_BITS(resp, 64, 8); in mmc_decode_cid()
90 card->cid.hwrev = UNSTUFF_BITS(resp, 60, 4); in mmc_decode_cid()
91 card->cid.fwrev = UNSTUFF_BITS(resp, 56, 4); in mmc_decode_cid()
[all …]
Dmmc.c46 #define UNSTUFF_BITS(resp,start,size) \ macro
74 card->cid.manfid = UNSTUFF_BITS(resp, 104, 24); in mmc_decode_cid()
75 card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8); in mmc_decode_cid()
76 card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8); in mmc_decode_cid()
77 card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8); in mmc_decode_cid()
78 card->cid.prod_name[3] = UNSTUFF_BITS(resp, 72, 8); in mmc_decode_cid()
79 card->cid.prod_name[4] = UNSTUFF_BITS(resp, 64, 8); in mmc_decode_cid()
80 card->cid.prod_name[5] = UNSTUFF_BITS(resp, 56, 8); in mmc_decode_cid()
81 card->cid.prod_name[6] = UNSTUFF_BITS(resp, 48, 8); in mmc_decode_cid()
82 card->cid.hwrev = UNSTUFF_BITS(resp, 44, 4); in mmc_decode_cid()
[all …]