Skip to content

Commit 58fa170

Browse files
Marco Cesatiintel-lab-lkp
authored andcommitted
Staging: rtl8723bs: fix spaces in hal_com.h
This commit fixes the following checkpatch.pl errors: ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#218: FILE: ./include/hal_com.h:218: + struct adapter * Adapter, ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#230: FILE: ./include/hal_com.h:230: +void rtw_init_hal_com_default_value(struct adapter * Adapter); ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#282: FILE: ./include/hal_com.h:282: + void * pValue1, ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#283: FILE: ./include/hal_com.h:283: + void * pValue2); ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#285: FILE: ./include/hal_com.h:285: + struct adapter * Adapter, ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#287: FILE: ./include/hal_com.h:287: + void * pValue1, Signed-off-by: Marco Cesati <[email protected]>
1 parent 07446e0 commit 58fa170

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

drivers/staging/rtl8723bs/include/hal_com.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -215,9 +215,9 @@ u8 MRateToHwRate(u8 rate);
215215
u8 HwRateToMRate(u8 rate);
216216

217217
void HalSetBrateCfg(
218-
struct adapter * Adapter,
219-
u8 *mBratesOS,
220-
u16 *pBrateCfg);
218+
struct adapter *Adapter,
219+
u8 *mBratesOS,
220+
u16 *pBrateCfg);
221221

222222
bool
223223
Hal_MappingOutPipe(
@@ -227,7 +227,7 @@ u8 NumOutPipe
227227

228228
void hal_init_macaddr(struct adapter *adapter);
229229

230-
void rtw_init_hal_com_default_value(struct adapter * Adapter);
230+
void rtw_init_hal_com_default_value(struct adapter *Adapter);
231231

232232
void c2h_evt_clear(struct adapter *adapter);
233233
s32 c2h_evt_read_88xx(struct adapter *adapter, u8 *buf);
@@ -279,12 +279,12 @@ void rtw_bb_rf_gain_offset(struct adapter *padapter);
279279

280280
void GetHalODMVar(struct adapter *Adapter,
281281
enum HAL_ODM_VARIABLE eVariable,
282-
void * pValue1,
283-
void * pValue2);
282+
void *pValue1,
283+
void *pValue2);
284284
void SetHalODMVar(
285-
struct adapter * Adapter,
285+
struct adapter *Adapter,
286286
enum HAL_ODM_VARIABLE eVariable,
287-
void * pValue1,
287+
void *pValue1,
288288
bool bSet);
289289

290290
#ifdef CONFIG_BACKGROUND_NOISE_MONITOR

0 commit comments

Comments
 (0)