mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-13 16:29:25 -04:00
Staging: rtl8723bs: fix spaces in rtl8723b_phycfg.c
This commit fixes the following checkpatch.pl errors:
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#597: FILE: ./hal/rtl8723b_phycfg.c:597:
+ struct DM_ODM_T * pDM_Odm = &pHalData->odmpriv;
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#598: FILE: ./hal/rtl8723b_phycfg.c:598:
+ struct FAT_T * pDM_FatTable = &pDM_Odm->DM_FatTable;
Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Marco Cesati <marcocesati@gmail.com>
Link: https://lore.kernel.org/r/20210315170618.2566-38-marcocesati@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
3ecd73ee17
commit
6980b02620
@@ -594,8 +594,8 @@ u8 PHY_GetTxPowerIndex(
|
||||
void PHY_SetTxPowerLevel8723B(struct adapter *Adapter, u8 Channel)
|
||||
{
|
||||
struct hal_com_data *pHalData = GET_HAL_DATA(Adapter);
|
||||
struct DM_ODM_T * pDM_Odm = &pHalData->odmpriv;
|
||||
struct FAT_T * pDM_FatTable = &pDM_Odm->DM_FatTable;
|
||||
struct DM_ODM_T *pDM_Odm = &pHalData->odmpriv;
|
||||
struct FAT_T *pDM_FatTable = &pDM_Odm->DM_FatTable;
|
||||
u8 RFPath = ODM_RF_PATH_A;
|
||||
|
||||
if (pHalData->AntDivCfg) {/* antenna diversity Enable */
|
||||
|
||||
Reference in New Issue
Block a user