rtl8188eu: Convert typedef for _adapter, etc.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2013-07-26 20:08:39 -05:00
parent e8012b9521
commit 2bd2f4b4c8
99 changed files with 2239 additions and 2251 deletions

View file

@ -388,7 +388,7 @@ _func_exit_;
/* using pstapriv->sta_hash_lock to protect */
u32 rtw_free_stainfo(_adapter *padapter , struct sta_info *psta)
u32 rtw_free_stainfo(struct adapter *padapter , struct sta_info *psta)
{
int i;
unsigned long irqL0;
@ -530,7 +530,7 @@ _func_exit_;
}
/* free all stainfo which in sta_hash[all] */
void rtw_free_all_stainfo(_adapter *padapter)
void rtw_free_all_stainfo(struct adapter *padapter)
{
unsigned long irqL;
struct list_head *plist, *phead;
@ -618,7 +618,7 @@ _func_exit_;
}
u32 rtw_init_bcmc_stainfo(_adapter* padapter)
u32 rtw_init_bcmc_stainfo(struct adapter* padapter)
{
struct sta_info *psta;
u32 res=_SUCCESS;
@ -643,7 +643,7 @@ _func_exit_;
return res;
}
struct sta_info* rtw_get_bcmc_stainfo(_adapter* padapter)
struct sta_info* rtw_get_bcmc_stainfo(struct adapter* padapter)
{
struct sta_info *psta;
struct sta_priv *pstapriv = &padapter->stapriv;
@ -655,7 +655,7 @@ _func_exit_;
}
u8 rtw_access_ctrl(_adapter *padapter, u8 *mac_addr)
u8 rtw_access_ctrl(struct adapter *padapter, u8 *mac_addr)
{
u8 res = true;
#ifdef CONFIG_AP_MODE