staging: rtl8188eu: remove unnecessary parentheses in rtl8188e_dm.c
Remove unnecessary parentheses reported by checkpatch. Signed-off-by: Michael Straube <straube.linux@gmail.com> Link: https://lore.kernel.org/r/20200114134422.13598-4-straube.linux@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Родитель
c085fed4cb
Коммит
8c26f783d7
|
@ -36,7 +36,7 @@ static void Init_ODM_ComInfo_88E(struct adapter *Adapter)
|
|||
{
|
||||
struct hal_data_8188e *hal_data = Adapter->HalData;
|
||||
struct dm_priv *pdmpriv = &hal_data->dmpriv;
|
||||
struct odm_dm_struct *dm_odm = &(hal_data->odmpriv);
|
||||
struct odm_dm_struct *dm_odm = &hal_data->odmpriv;
|
||||
|
||||
/* Init Value */
|
||||
memset(dm_odm, 0, sizeof(*dm_odm));
|
||||
|
@ -71,7 +71,7 @@ static void Update_ODM_ComInfo_88E(struct adapter *Adapter)
|
|||
struct mlme_priv *pmlmepriv = &Adapter->mlmepriv;
|
||||
struct pwrctrl_priv *pwrctrlpriv = &Adapter->pwrctrlpriv;
|
||||
struct hal_data_8188e *hal_data = Adapter->HalData;
|
||||
struct odm_dm_struct *dm_odm = &(hal_data->odmpriv);
|
||||
struct odm_dm_struct *dm_odm = &hal_data->odmpriv;
|
||||
struct dm_priv *pdmpriv = &hal_data->dmpriv;
|
||||
int i;
|
||||
|
||||
|
@ -124,7 +124,7 @@ static void Update_ODM_ComInfo_88E(struct adapter *Adapter)
|
|||
void rtl8188e_InitHalDm(struct adapter *Adapter)
|
||||
{
|
||||
struct dm_priv *pdmpriv = &Adapter->HalData->dmpriv;
|
||||
struct odm_dm_struct *dm_odm = &(Adapter->HalData->odmpriv);
|
||||
struct odm_dm_struct *dm_odm = &Adapter->HalData->odmpriv;
|
||||
|
||||
dm_InitGPIOSetting(Adapter);
|
||||
pdmpriv->DM_Type = DM_Type_ByDriver;
|
||||
|
@ -198,7 +198,7 @@ bool rtw_hal_antdiv_before_linked(struct adapter *Adapter)
|
|||
{
|
||||
struct odm_dm_struct *dm_odm = &Adapter->HalData->odmpriv;
|
||||
struct sw_ant_switch *dm_swat_tbl = &dm_odm->DM_SWAT_Table;
|
||||
struct mlme_priv *pmlmepriv = &(Adapter->mlmepriv);
|
||||
struct mlme_priv *pmlmepriv = &Adapter->mlmepriv;
|
||||
|
||||
/* Condition that does not need to use antenna diversity. */
|
||||
if (Adapter->HalData->AntDivCfg == 0)
|
||||
|
|
Загрузка…
Ссылка в новой задаче