Skip to content

Commit ba79ec9

Browse files
Marco Cesatigregkh
authored andcommitted
Staging: rtl8723bs: fix spaces in rtl8723b_xmit.h
This commit fixes the following checkpatch.pl errors: ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#446: FILE: ./include/rtl8723b_xmit.h:446: +u8 BWMapping_8723B(struct adapter * Adapter, struct pkt_attrib *pattrib); ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#447: FILE: ./include/rtl8723b_xmit.h:447: +u8 SCMapping_8723B(struct adapter * Adapter, struct pkt_attrib *pattrib); 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 80345ec commit ba79ec9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/staging/rtl8723bs/include/rtl8723b_xmit.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ s32 rtl8723bs_xmit_buf_handler(struct adapter *padapter);
443443
int rtl8723bs_xmit_thread(void *context);
444444
#define hal_xmit_handler rtl8723bs_xmit_buf_handler
445445

446-
u8 BWMapping_8723B(struct adapter * Adapter, struct pkt_attrib *pattrib);
447-
u8 SCMapping_8723B(struct adapter * Adapter, struct pkt_attrib *pattrib);
446+
u8 BWMapping_8723B(struct adapter *Adapter, struct pkt_attrib *pattrib);
447+
u8 SCMapping_8723B(struct adapter *Adapter, struct pkt_attrib *pattrib);
448448

449449
#endif

0 commit comments

Comments
 (0)