1
0
Fork 0

staging: rtl8712: mlme_linux.c: Remove leading p from variable names

Remove leading p from the names of the following pointer variables:
- padapter
- pmlmepriv
- psec_priv.
Issue found with Coccinelle.

Signed-off-by: Nishka Dasgupta <nishkadg.linux@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
alistair/sunxi64-5.4-dsi
Nishka Dasgupta 2019-06-20 17:22:55 +05:30 committed by Greg Kroah-Hartman
parent 014860188c
commit f745aa4096
1 changed files with 16 additions and 16 deletions

View File

@ -66,16 +66,16 @@ static void wdg_timeout_handler (struct timer_list *t)
jiffies + msecs_to_jiffies(2000));
}
void r8712_init_mlme_timer(struct _adapter *padapter)
void r8712_init_mlme_timer(struct _adapter *adapter)
{
struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
struct mlme_priv *mlmepriv = &adapter->mlmepriv;
timer_setup(&pmlmepriv->assoc_timer, join_timeout_handler, 0);
timer_setup(&pmlmepriv->sitesurveyctrl.sitesurvey_ctrl_timer,
timer_setup(&mlmepriv->assoc_timer, join_timeout_handler, 0);
timer_setup(&mlmepriv->sitesurveyctrl.sitesurvey_ctrl_timer,
sitesurvey_ctrl_handler, 0);
timer_setup(&pmlmepriv->scan_to_timer, _scan_timeout_handler, 0);
timer_setup(&pmlmepriv->dhcp_timer, dhcp_timeout_handler, 0);
timer_setup(&pmlmepriv->wdg_timer, wdg_timeout_handler, 0);
timer_setup(&mlmepriv->scan_to_timer, _scan_timeout_handler, 0);
timer_setup(&mlmepriv->dhcp_timer, dhcp_timeout_handler, 0);
timer_setup(&mlmepriv->wdg_timer, wdg_timeout_handler, 0);
}
void r8712_os_indicate_connect(struct _adapter *adapter)
@ -119,16 +119,16 @@ void r8712_os_indicate_disconnect(struct _adapter *adapter)
adapter->securitypriv.btkip_countermeasure =
backupTKIPCountermeasure;
} else { /*reset values in securitypriv*/
struct security_priv *psec_priv = &adapter->securitypriv;
struct security_priv *sec_priv = &adapter->securitypriv;
psec_priv->AuthAlgrthm = 0; /*open system*/
psec_priv->PrivacyAlgrthm = _NO_PRIVACY_;
psec_priv->PrivacyKeyIndex = 0;
psec_priv->XGrpPrivacy = _NO_PRIVACY_;
psec_priv->XGrpKeyid = 1;
psec_priv->ndisauthtype = Ndis802_11AuthModeOpen;
psec_priv->ndisencryptstatus = Ndis802_11WEPDisabled;
psec_priv->wps_phase = false;
sec_priv->AuthAlgrthm = 0; /*open system*/
sec_priv->PrivacyAlgrthm = _NO_PRIVACY_;
sec_priv->PrivacyKeyIndex = 0;
sec_priv->XGrpPrivacy = _NO_PRIVACY_;
sec_priv->XGrpKeyid = 1;
sec_priv->ndisauthtype = Ndis802_11AuthModeOpen;
sec_priv->ndisencryptstatus = Ndis802_11WEPDisabled;
sec_priv->wps_phase = false;
}
}