staging: rtl8723bs: fix pointer declaration style
Fix some pointer declarations where '*' is not adjacent to data name. This fixes checkpatch.pl error: "POINTER_LOCATION: "foo * bar" should be "foo *bar"" Signed-off-by: Ayush <ayush@disroot.org> Link: https://lore.kernel.org/r/20210204211750.102129-1-ayush@disroot.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4964a43006
commit
af48fc5a4f
|
@ -257,8 +257,8 @@ struct hal_ops {
|
|||
bool (*Efuse_PgPacketWrite_BT)(struct adapter *padapter, u8 offset, u8 word_en, u8 *data, bool bPseudoTest);
|
||||
|
||||
s32 (*xmit_thread_handler)(struct adapter *padapter);
|
||||
void (*hal_notch_filter)(struct adapter * adapter, bool enable);
|
||||
void (*hal_reset_security_engine)(struct adapter * adapter);
|
||||
void (*hal_notch_filter)(struct adapter *adapter, bool enable);
|
||||
void (*hal_reset_security_engine)(struct adapter *adapter);
|
||||
s32 (*c2h_handler)(struct adapter *padapter, u8 *c2h_evt);
|
||||
c2h_id_filter c2h_id_filter_ccx;
|
||||
|
||||
|
@ -384,8 +384,8 @@ void rtw_hal_dm_watchdog_in_lps(struct adapter *padapter);
|
|||
|
||||
s32 rtw_hal_xmit_thread_handler(struct adapter *padapter);
|
||||
|
||||
void rtw_hal_notch_filter(struct adapter * adapter, bool enable);
|
||||
void rtw_hal_reset_security_engine(struct adapter * adapter);
|
||||
void rtw_hal_notch_filter(struct adapter *adapter, bool enable);
|
||||
void rtw_hal_reset_security_engine(struct adapter *adapter);
|
||||
|
||||
bool rtw_hal_c2h_valid(struct adapter *adapter, u8 *buf);
|
||||
s32 rtw_hal_c2h_handler(struct adapter *adapter, u8 *c2h_evt);
|
||||
|
|
Loading…
Reference in New Issue