mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 17:47:41 +02:00
staging: rtl8723bs: rename rtw_btcoex_RejectApAggregatedPacket()
Renames rtw_btcoex_RejectApAggregatedPacket to rtw_btcoex_reject_ap_aggregated_packet in order to conform to kernel code style. Found using checkpatch.pl. Signed-off-by: Linus Probert <linus.probert@gmail.com> Reviewed-by: Luka Gejak <luka.gejak@linux.dev> Link: https://patch.msgid.link/20260427173857.585742-7-linus.probert@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c8e50e93c0
commit
3018c91026
|
|
@ -32,7 +32,7 @@ void rtw_btcoex_halt_notify(struct adapter *padapter)
|
|||
/* ================================================== */
|
||||
/* Below Functions are called by BT-Coex */
|
||||
/* ================================================== */
|
||||
void rtw_btcoex_RejectApAggregatedPacket(struct adapter *padapter, u8 enable)
|
||||
void rtw_btcoex_reject_ap_aggregated_packet(struct adapter *padapter, u8 enable)
|
||||
{
|
||||
struct mlme_ext_info *pmlmeinfo;
|
||||
struct sta_info *psta;
|
||||
|
|
|
|||
|
|
@ -134,7 +134,7 @@ static void halbtcoutsrc_AggregationCheck(struct btc_coexist *pBtCoexist)
|
|||
bNeedToAct = false;
|
||||
|
||||
if (pBtCoexist->btInfo.bRejectAggPkt) {
|
||||
rtw_btcoex_RejectApAggregatedPacket(padapter, true);
|
||||
rtw_btcoex_reject_ap_aggregated_packet(padapter, true);
|
||||
} else {
|
||||
if (pBtCoexist->btInfo.bPreBtCtrlAggBufSize !=
|
||||
pBtCoexist->btInfo.bBtCtrlAggBufSize) {
|
||||
|
|
@ -151,8 +151,8 @@ static void halbtcoutsrc_AggregationCheck(struct btc_coexist *pBtCoexist)
|
|||
}
|
||||
|
||||
if (bNeedToAct) {
|
||||
rtw_btcoex_RejectApAggregatedPacket(padapter, true);
|
||||
rtw_btcoex_RejectApAggregatedPacket(padapter, false);
|
||||
rtw_btcoex_reject_ap_aggregated_packet(padapter, true);
|
||||
rtw_btcoex_reject_ap_aggregated_packet(padapter, false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ void rtw_btcoex_halt_notify(struct adapter *padapter);
|
|||
/* ================================================== */
|
||||
/* Below Functions are called by BT-Coex */
|
||||
/* ================================================== */
|
||||
void rtw_btcoex_RejectApAggregatedPacket(struct adapter *padapter, u8 enable);
|
||||
void rtw_btcoex_reject_ap_aggregated_packet(struct adapter *padapter, u8 enable);
|
||||
void rtw_btcoex_LPS_Enter(struct adapter *padapter);
|
||||
void rtw_btcoex_LPS_Leave(struct adapter *padapter);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user