Lines Matching refs:mcc
405 .mcc = cpu_to_le16(alpha2[0] << 8 | alpha2[1]),
419 u16 mcc;
455 resp_cp->mcc = mcc_resp_v8->mcc;
481 resp_cp->mcc = mcc_resp_v4->mcc;
506 resp_cp->mcc = mcc_resp_v3->mcc;
518 mcc = le16_to_cpu(resp_cp->mcc);
521 if (mcc == 0) {
522 mcc = 0x3030; /* "00" - world */
523 resp_cp->mcc = cpu_to_le16(mcc);
528 status, mcc, mcc >> 8, mcc & 0xff, n_channels);
541 char mcc[3];
578 !iwl_bios_get_mcc(&mvm->fwrt, mcc)) {
580 regd = iwl_mvm_get_regdomain(mvm->hw->wiphy, mcc,
597 char mcc[3];
605 IWL_DEBUG_LAR(mvm, "Ignore mcc update while associated\n");
612 mcc[0] = le16_to_cpu(notif->mcc) >> 8;
613 mcc[1] = le16_to_cpu(notif->mcc) & 0xff;
614 mcc[2] = '\0';
618 "RX: received chub update mcc cmd (mcc '%s' src %d)\n",
619 mcc, src);
620 regd = iwl_mvm_get_regdomain(mvm->hw->wiphy, mcc, src, &changed);