Skip to content

Commit

Permalink
Staging: rtl8723bs: fix spaces in hal_com_h2c.h
Browse files Browse the repository at this point in the history
This commit fixes the following checkpatch.pl error:

    ERROR:POINTER_LOCATION: "foo*bar" should be "foo *bar"
    torvalds#283: FILE: ./include/hal_com_h2c.h:283:
    +void rtw_get_sec_iv(struct adapter *padapter, u8*pcur_dot11txpn, u8 *StaAddr);

Signed-off-by: Marco Cesati <marcocesati@gmail.com>
  • Loading branch information
Marco Cesati authored and intel-lab-lkp committed Mar 15, 2021
1 parent 58fa170 commit 21ef313
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/rtl8723bs/include/hal_com_h2c.h
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,6 @@ struct RSVDPAGE_LOC {
#endif
#if defined(CONFIG_WOWLAN) || defined(CONFIG_AP_WOWLAN)
void rtw_get_current_ip_address(struct adapter *padapter, u8 *pcurrentip);
void rtw_get_sec_iv(struct adapter *padapter, u8*pcur_dot11txpn, u8 *StaAddr);
void rtw_get_sec_iv(struct adapter *padapter, u8 *pcur_dot11txpn, u8 *StaAddr);
void rtw_set_sec_pn(struct adapter *padapter);
#endif

0 comments on commit 21ef313

Please sign in to comment.