Home
last modified time | relevance | path

Searched refs:unstuff_bits (Results 1 – 3 of 3) sorted by relevance

/linux/drivers/mmc/core/
H A Dsd.c85 card->cid.manfid = unstuff_bits(resp, 120, 8); in mmc_decode_cid()
86 card->cid.oemid = unstuff_bits(resp, 104, 16); in mmc_decode_cid()
87 card->cid.prod_name[0] = unstuff_bits(resp, 96, 8); in mmc_decode_cid()
88 card->cid.prod_name[1] = unstuff_bits(resp, 88, 8); in mmc_decode_cid()
89 card->cid.prod_name[2] = unstuff_bits(resp, 80, 8); in mmc_decode_cid()
90 card->cid.prod_name[3] = unstuff_bits(resp, 72, 8); in mmc_decode_cid()
91 card->cid.prod_name[4] = unstuff_bits(resp, 64, 8); in mmc_decode_cid()
92 card->cid.hwrev = unstuff_bits(resp, 60, 4); in mmc_decode_cid()
93 card->cid.fwrev = unstuff_bits(resp, 56, 4); in mmc_decode_cid()
94 card->cid.serial = unstuff_bits(resp, 24, 32); in mmc_decode_cid()
[all …]
H A Dmmc.c81 card->cid.manfid = unstuff_bits(resp, 104, 24); in mmc_decode_cid()
82 card->cid.prod_name[0] = unstuff_bits(resp, 96, 8); in mmc_decode_cid()
83 card->cid.prod_name[1] = unstuff_bits(resp, 88, 8); in mmc_decode_cid()
84 card->cid.prod_name[2] = unstuff_bits(resp, 80, 8); in mmc_decode_cid()
85 card->cid.prod_name[3] = unstuff_bits(resp, 72, 8); in mmc_decode_cid()
86 card->cid.prod_name[4] = unstuff_bits(resp, 64, 8); in mmc_decode_cid()
87 card->cid.prod_name[5] = unstuff_bits(resp, 56, 8); in mmc_decode_cid()
88 card->cid.prod_name[6] = unstuff_bits(resp, 48, 8); in mmc_decode_cid()
89 card->cid.hwrev = unstuff_bits(resp, 44, 4); in mmc_decode_cid()
90 card->cid.fwrev = unstuff_bits(resp, 40, 4); in mmc_decode_cid()
[all …]
H A Dmmc_ops.h60 static inline u32 unstuff_bits(const u32 *resp, int start, int size) in unstuff_bits() function