Home
last modified time | relevance | path

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

/linux-6.12.1/drivers/mmc/core/
Dsd.c84 card->cid.manfid = unstuff_bits(resp, 120, 8); in mmc_decode_cid()
85 card->cid.oemid = unstuff_bits(resp, 104, 16); in mmc_decode_cid()
86 card->cid.prod_name[0] = unstuff_bits(resp, 96, 8); in mmc_decode_cid()
87 card->cid.prod_name[1] = unstuff_bits(resp, 88, 8); in mmc_decode_cid()
88 card->cid.prod_name[2] = unstuff_bits(resp, 80, 8); in mmc_decode_cid()
89 card->cid.prod_name[3] = unstuff_bits(resp, 72, 8); in mmc_decode_cid()
90 card->cid.prod_name[4] = unstuff_bits(resp, 64, 8); in mmc_decode_cid()
91 card->cid.hwrev = unstuff_bits(resp, 60, 4); in mmc_decode_cid()
92 card->cid.fwrev = unstuff_bits(resp, 56, 4); in mmc_decode_cid()
93 card->cid.serial = unstuff_bits(resp, 24, 32); in mmc_decode_cid()
[all …]
Dmmc.c74 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()
83 card->cid.fwrev = unstuff_bits(resp, 40, 4); in mmc_decode_cid()
[all …]
Dmmc_ops.h59 static inline u32 unstuff_bits(const u32 *resp, int start, int size) in unstuff_bits() function