mirror of
https://github.com/torvalds/linux.git
synced 2026-07-28 10:09:10 +02:00
staging: rtl8723bs: add function definition arg names to rtw_btcoex.h
Adds function definition argument names to rtw_btcoex.h in order to conform to kernel code style. This eliminates warnings generated by checkpatch.pl. In all cases it's the 'struct adapter *' argument which has been given the name 'padapter'. This matches the names used in the implementations of these functions. Signed-off-by: Linus Probert <linus.probert@gmail.com> Reviewed-by: Luka Gejak <luka.gejak@linux.dev> Link: https://patch.msgid.link/20260427173857.585742-3-linus.probert@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0752f1f4db
commit
e045a83f98
|
|
@ -14,14 +14,14 @@
|
|||
#define PACKET_ARP 2
|
||||
#define PACKET_EAPOL 3
|
||||
|
||||
void rtw_btcoex_MediaStatusNotify(struct adapter *, u8 mediaStatus);
|
||||
void rtw_btcoex_HaltNotify(struct adapter *);
|
||||
void rtw_btcoex_MediaStatusNotify(struct adapter *padapter, u8 mediaStatus);
|
||||
void rtw_btcoex_HaltNotify(struct adapter *padapter);
|
||||
|
||||
/* ================================================== */
|
||||
/* Below Functions are called by BT-Coex */
|
||||
/* ================================================== */
|
||||
void rtw_btcoex_RejectApAggregatedPacket(struct adapter *, u8 enable);
|
||||
void rtw_btcoex_LPS_Enter(struct adapter *);
|
||||
void rtw_btcoex_LPS_Leave(struct adapter *);
|
||||
void rtw_btcoex_RejectApAggregatedPacket(struct adapter *padapter, u8 enable);
|
||||
void rtw_btcoex_LPS_Enter(struct adapter *padapter);
|
||||
void rtw_btcoex_LPS_Leave(struct adapter *padapter);
|
||||
|
||||
#endif /* __RTW_BTCOEX_H__ */
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user