Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5ce5b8d3 authored by Ivan Safonov's avatar Ivan Safonov Committed by Greg Kroah-Hartman
Browse files

staging: rtl8188eu: checkpatch fixes: unnecessary parentheses removed in hal/bb_cfg.c



This is checkpatch fixes for hal/bb_cfg.c file:
unnecessary parentheses around <expr>.

Signed-off-by: default avatarIvan Safonov <insafonov@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 53d06211
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -594,10 +594,10 @@ static void rtl88e_phy_init_bb_rf_register_definition(struct adapter *Adapter)
	struct hal_data_8188e		*hal_data = GET_HAL_DATA(Adapter);
	struct bb_reg_def               *reg[4];

	reg[RF_PATH_A] = &(hal_data->PHYRegDef[RF_PATH_A]);
	reg[RF_PATH_B] = &(hal_data->PHYRegDef[RF_PATH_B]);
	reg[RF_PATH_C] = &(hal_data->PHYRegDef[RF_PATH_C]);
	reg[RF_PATH_D] = &(hal_data->PHYRegDef[RF_PATH_D]);
	reg[RF_PATH_A] = &hal_data->PHYRegDef[RF_PATH_A];
	reg[RF_PATH_B] = &hal_data->PHYRegDef[RF_PATH_B];
	reg[RF_PATH_C] = &hal_data->PHYRegDef[RF_PATH_C];
	reg[RF_PATH_D] = &hal_data->PHYRegDef[RF_PATH_D];

	reg[RF_PATH_A]->rfintfs = rFPGA0_XAB_RFInterfaceSW;
	reg[RF_PATH_B]->rfintfs = rFPGA0_XAB_RFInterfaceSW;