mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-05-09 06:43:06 +00:00
rtl8188eu: Convert "typedef HAL_DATA_TYPE" to "struct hal_data_8188e"
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
d2de492de6
commit
548e42fb94
20 changed files with 177 additions and 180 deletions
|
@ -250,7 +250,7 @@ MPT_InitializeAdapter(
|
|||
u8 Channel
|
||||
)
|
||||
{
|
||||
HAL_DATA_TYPE *pHalData = GET_HAL_DATA(pAdapter);
|
||||
struct hal_data_8188e *pHalData = GET_HAL_DATA(pAdapter);
|
||||
s32 rtStatus = _SUCCESS;
|
||||
PMPT_CONTEXT pMptCtx = &pAdapter->mppriv.MptCtx;
|
||||
struct mlme_priv *pmlmepriv = &pAdapter->mlmepriv;
|
||||
|
@ -355,7 +355,7 @@ void GetPowerTracking(PADAPTER padapter, u8 *enable)
|
|||
static void disable_dm(PADAPTER padapter)
|
||||
{
|
||||
u8 v8;
|
||||
HAL_DATA_TYPE *pHalData = GET_HAL_DATA(padapter);
|
||||
struct hal_data_8188e *pHalData = GET_HAL_DATA(padapter);
|
||||
struct dm_priv *pdmpriv = &pHalData->dmpriv;
|
||||
|
||||
|
||||
|
@ -933,7 +933,7 @@ void SetPacketTx(PADAPTER padapter)
|
|||
|
||||
void SetPacketRx(PADAPTER pAdapter, u8 bStartRx)
|
||||
{
|
||||
HAL_DATA_TYPE *pHalData = GET_HAL_DATA(pAdapter);
|
||||
struct hal_data_8188e *pHalData = GET_HAL_DATA(pAdapter);
|
||||
|
||||
if (bStartRx) {
|
||||
/* Accept CRC error and destination address */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue