Skip to content

Commit 6980b02

Browse files
Marco Cesatigregkh
Marco Cesati
authored andcommitted
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" torvalds#597: FILE: ./hal/rtl8723b_phycfg.c:597: + struct DM_ODM_T * pDM_Odm = &pHalData->odmpriv; ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#598: FILE: ./hal/rtl8723b_phycfg.c:598: + struct FAT_T * pDM_FatTable = &pDM_Odm->DM_FatTable; Reviewed-by: Dan Carpenter <[email protected]> Signed-off-by: Marco Cesati <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 3ecd73e commit 6980b02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/staging/rtl8723bs/hal/rtl8723b_phycfg.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -594,8 +594,8 @@ u8 PHY_GetTxPowerIndex(
594594
void PHY_SetTxPowerLevel8723B(struct adapter *Adapter, u8 Channel)
595595
{
596596
struct hal_com_data *pHalData = GET_HAL_DATA(Adapter);
597-
struct DM_ODM_T * pDM_Odm = &pHalData->odmpriv;
598-
struct FAT_T * pDM_FatTable = &pDM_Odm->DM_FatTable;
597+
struct DM_ODM_T *pDM_Odm = &pHalData->odmpriv;
598+
struct FAT_T *pDM_FatTable = &pDM_Odm->DM_FatTable;
599599
u8 RFPath = ODM_RF_PATH_A;
600600

601601
if (pHalData->AntDivCfg) {/* antenna diversity Enable */

0 commit comments

Comments
 (0)