Searched refs:raw_cid (Results 1 – 1 of 1) sorted by relevance
| /freebsd-10-stable/sys/dev/mmc/ |
| D | mmc.c | 85 uint32_t raw_cid[4]; /* Raw bits of the CID */ member 179 static void mmc_decode_cid_mmc(uint32_t *raw_cid, struct mmc_cid *cid, 181 static void mmc_decode_cid_sd(uint32_t *raw_cid, struct mmc_cid *cid); 1091 mmc_decode_cid_sd(uint32_t *raw_cid, struct mmc_cid *cid) in mmc_decode_cid_sd() argument 1097 cid->mid = mmc_get_bits(raw_cid, 128, 120, 8); in mmc_decode_cid_sd() 1098 cid->oid = mmc_get_bits(raw_cid, 128, 104, 16); in mmc_decode_cid_sd() 1100 cid->pnm[i] = mmc_get_bits(raw_cid, 128, 96 - i * 8, 8); in mmc_decode_cid_sd() 1102 cid->prv = mmc_get_bits(raw_cid, 128, 56, 8); in mmc_decode_cid_sd() 1103 cid->psn = mmc_get_bits(raw_cid, 128, 24, 32); in mmc_decode_cid_sd() 1104 cid->mdt_year = mmc_get_bits(raw_cid, 128, 12, 8) + 2000; in mmc_decode_cid_sd() [all …]
|