Lines Matching defs:pBase

2967 	struct ar9300_base_eep_hdr *pBase = &eep->baseEepHeader;
2977 return le16_to_cpu(pBase->regDmn[0]);
2979 return pBase->deviceCap;
2981 return pBase->opCapFlags.opFlags;
2983 return pBase->rfSilent;
2985 return (pBase->txrxMask >> 4) & 0xf;
2987 return pBase->txrxMask & 0xf;
2990 return pBase->miscConfiguration & AR9300_EEP_BASE_DRIV_STRENGTH;
2993 return (pBase->featureEnable & 0x10) >> 4;
2995 return le32_to_cpu(pBase->swreg);
2997 return !!(pBase->featureEnable & BIT(5));
2999 return (pBase->miscConfiguration >> 0x3) & 0x1;
3007 return pBase->miscConfiguration & BIT(1);
3424 struct ar9300_base_eep_hdr *pBase;
3438 pBase = &eep->baseEepHeader;
3441 PR_EEP("RegDomain1", le16_to_cpu(pBase->regDmn[0]));
3442 PR_EEP("RegDomain2", le16_to_cpu(pBase->regDmn[1]));
3443 PR_EEP("TX Mask", (pBase->txrxMask >> 4));
3444 PR_EEP("RX Mask", (pBase->txrxMask & 0x0f));
3445 PR_EEP("Allow 5GHz", !!(pBase->opCapFlags.opFlags &
3447 PR_EEP("Allow 2GHz", !!(pBase->opCapFlags.opFlags &
3449 PR_EEP("Disable 2GHz HT20", !!(pBase->opCapFlags.opFlags &
3451 PR_EEP("Disable 2GHz HT40", !!(pBase->opCapFlags.opFlags &
3453 PR_EEP("Disable 5Ghz HT20", !!(pBase->opCapFlags.opFlags &
3455 PR_EEP("Disable 5Ghz HT40", !!(pBase->opCapFlags.opFlags &
3457 PR_EEP("Big Endian", !!(pBase->opCapFlags.eepMisc & 0x01));
3458 PR_EEP("RF Silent", pBase->rfSilent);
3459 PR_EEP("BT option", pBase->blueToothOptions);
3460 PR_EEP("Device Cap", pBase->deviceCap);
3461 PR_EEP("Device Type", pBase->deviceType);
3462 PR_EEP("Power Table Offset", pBase->pwrTableOffset);
3463 PR_EEP("Tuning Caps1", pBase->params_for_tuning_caps[0]);
3464 PR_EEP("Tuning Caps2", pBase->params_for_tuning_caps[1]);
3465 PR_EEP("Enable Tx Temp Comp", !!(pBase->featureEnable & BIT(0)));
3466 PR_EEP("Enable Tx Volt Comp", !!(pBase->featureEnable & BIT(1)));
3467 PR_EEP("Enable fast clock", !!(pBase->featureEnable & BIT(2)));
3468 PR_EEP("Enable doubling", !!(pBase->featureEnable & BIT(3)));
3469 PR_EEP("Internal regulator", !!(pBase->featureEnable & BIT(4)));
3470 PR_EEP("Enable Paprd", !!(pBase->featureEnable & BIT(5)));
3471 PR_EEP("Driver Strength", !!(pBase->miscConfiguration & BIT(0)));
3472 PR_EEP("Quick Drop", !!(pBase->miscConfiguration & BIT(1)));
3473 PR_EEP("Chain mask Reduce", (pBase->miscConfiguration >> 0x3) & 0x1);
3474 PR_EEP("Write enable Gpio", pBase->eepromWriteEnableGpio);
3475 PR_EEP("WLAN Disable Gpio", pBase->wlanDisableGpio);
3476 PR_EEP("WLAN LED Gpio", pBase->wlanLedGpio);
3477 PR_EEP("Rx Band Select Gpio", pBase->rxBandSelectGpio);
3478 PR_EEP("Tx Gain", pBase->txrxgain >> 4);
3479 PR_EEP("Rx Gain", pBase->txrxgain & 0xf);
3480 PR_EEP("SW Reg", le32_to_cpu(pBase->swreg));