Lines Matching refs:mcc
14 #include "mcc.h"
41 .mcc = cpu_to_le16(alpha2[0] << 8 | alpha2[1]),
53 u16 mcc;
68 mcc = le16_to_cpu(resp_cp->mcc);
70 IWL_FW_CHECK(mld, !mcc, "mcc can't be 0: %d\n", mcc);
74 le32_to_cpu(resp_cp->status), mcc, mcc >> 8, mcc & 0xff);
116 __le16_to_cpu(resp->mcc),
135 le16_to_cpu(resp->mcc)))
207 char mcc[3];
220 if (!iwl_bios_get_mcc(&mld->fwrt, mcc)) {
222 regd = iwl_mld_get_regdomain(mld, mcc, MCC_SOURCE_BIOS, NULL);
258 char mcc[3];
266 IWL_DEBUG_LAR(mld, "Ignore mcc update while associated\n");
270 mcc[0] = le16_to_cpu(notif->mcc) >> 8;
271 mcc[1] = le16_to_cpu(notif->mcc) & 0xff;
272 mcc[2] = '\0';
276 "RX: received chub update mcc cmd (mcc '%s' src %d)\n",
277 mcc, src);
278 regd = iwl_mld_get_regdomain(mld, mcc, src, &changed);