mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-05-08 14:33:05 +00:00
rtl8188eu: Remove all synonyms for u8, u16, u32, qnd u64
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
248ac6b84b
commit
7f635252a0
22 changed files with 326 additions and 353 deletions
|
@ -819,7 +819,7 @@ u8 rtw_btcoex_parse_HCI_link_status_notify_cmd(_adapter *padapter, u8 *pcmd, u16
|
|||
RTW_INFO("Connection_Handle=0x%x, BTProfile=%d, BTSpec=%d\n", conHandle, btProfile, btCoreSpec);
|
||||
pTriple += 4;
|
||||
} else if (pBtMgnt->ExtConfig.HCIExtensionVer >= 1) {
|
||||
conHandle = *((pu2Byte)&pTriple[0]);
|
||||
conHandle = *((u16 *)&pTriple[0]);
|
||||
btProfile = pTriple[2];
|
||||
btCoreSpec = pTriple[3];
|
||||
linkRole = pTriple[4];
|
||||
|
@ -1542,7 +1542,7 @@ void rtw_btcoex_SendEventExtBtCoexControl(PADAPTER padapter, u8 bNeedDbgRsp, u8
|
|||
u8 localBuf[32] = "";
|
||||
u8 *pRetPar;
|
||||
u8 opCode = 0;
|
||||
u8 *pInBuf = (pu1Byte)pData;
|
||||
u8 *pInBuf = (u8 *)pData;
|
||||
u8 *pOpCodeContent;
|
||||
rtw_HCI_event *pEvent;
|
||||
|
||||
|
|
|
@ -127,13 +127,13 @@ u8 rtw_efuse_mask_map_read(PADAPTER padapter, u16 addr, u16 cnts, u8 *data)
|
|||
|
||||
static void efuse_PreUpdateAction(
|
||||
PADAPTER pAdapter,
|
||||
pu4Byte BackupRegs)
|
||||
u32 * BackupRegs)
|
||||
{
|
||||
}
|
||||
|
||||
static void efuse_PostUpdateAction(
|
||||
PADAPTER pAdapter,
|
||||
pu4Byte BackupRegs)
|
||||
u32 * BackupRegs)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -369,11 +369,11 @@ MPT_InitializeAdapter(
|
|||
|
||||
PHY_SetRFPathSwitch(pAdapter, 1/*pHalData->bDefaultAntenna*/); /* default use Main */
|
||||
|
||||
pMptCtx->backup0xc50 = (u1Byte)phy_query_bb_reg(pAdapter, rOFDM0_XAAGCCore1, bMaskByte0);
|
||||
pMptCtx->backup0xc58 = (u1Byte)phy_query_bb_reg(pAdapter, rOFDM0_XBAGCCore1, bMaskByte0);
|
||||
pMptCtx->backup0xc30 = (u1Byte)phy_query_bb_reg(pAdapter, rOFDM0_RxDetector1, bMaskByte0);
|
||||
pMptCtx->backup0x52_RF_A = (u1Byte)phy_query_rf_reg(pAdapter, RF_PATH_A, RF_0x52, 0x000F0);
|
||||
pMptCtx->backup0x52_RF_B = (u1Byte)phy_query_rf_reg(pAdapter, RF_PATH_B, RF_0x52, 0x000F0);
|
||||
pMptCtx->backup0xc50 = (u8)phy_query_bb_reg(pAdapter, rOFDM0_XAAGCCore1, bMaskByte0);
|
||||
pMptCtx->backup0xc58 = (u8)phy_query_bb_reg(pAdapter, rOFDM0_XBAGCCore1, bMaskByte0);
|
||||
pMptCtx->backup0xc30 = (u8)phy_query_bb_reg(pAdapter, rOFDM0_RxDetector1, bMaskByte0);
|
||||
pMptCtx->backup0x52_RF_A = (u8)phy_query_rf_reg(pAdapter, RF_PATH_A, RF_0x52, 0x000F0);
|
||||
pMptCtx->backup0x52_RF_B = (u8)phy_query_rf_reg(pAdapter, RF_PATH_B, RF_0x52, 0x000F0);
|
||||
rtw_write32(pAdapter, REG_MACID_NO_LINK_0, 0x0);
|
||||
rtw_write32(pAdapter, REG_MACID_NO_LINK_1, 0x0);
|
||||
return rtStatus;
|
||||
|
@ -490,7 +490,7 @@ void MPT_PwrCtlDM(PADAPTER padapter, u32 bstart)
|
|||
padapter->mppriv.mp_dm = 0;
|
||||
{
|
||||
struct _TXPWRTRACK_CFG c;
|
||||
u1Byte chnl = 0 ;
|
||||
u8 chnl = 0 ;
|
||||
memset(&c, 0, sizeof(struct _TXPWRTRACK_CFG));
|
||||
configure_txpower_track(pDM_Odm, &c);
|
||||
odm_clear_txpowertracking_state(pDM_Odm);
|
||||
|
@ -1787,7 +1787,7 @@ u32 mpt_ProQueryCalTxPower(
|
|||
PMPT_CONTEXT pMptCtx = &(pAdapter->mppriv.mpt_ctx);
|
||||
|
||||
u32 TxPower = 1;
|
||||
u1Byte rate = 0;
|
||||
u8 rate = 0;
|
||||
struct txpwr_idx_comp tic;
|
||||
u8 mgn_rate = mpt_to_mgnt_rate(pMptCtx->mpt_rate_index);
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ void rtw_odm_init_ic_type(_adapter *adapter)
|
|||
{
|
||||
HAL_DATA_TYPE *hal_data = GET_HAL_DATA(adapter);
|
||||
struct PHY_DM_STRUCT *odm = &hal_data->odmpriv;
|
||||
u4Byte ic_type = chip_type_to_odm_ic_type(rtw_get_chip_type(adapter));
|
||||
u32 ic_type = chip_type_to_odm_ic_type(rtw_get_chip_type(adapter));
|
||||
|
||||
rtw_warn_on(!ic_type);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue