Staging: rtl8192e: Rename variable bAddNewTs
Rename variable bAddNewTs to add_new_ts to fix checkpatch warning Avoid CamelCase. Signed-off-by: Tree Davies <tdavies@darkphysics.net> Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/20240908192633.94144-15-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a035ddbdbe
commit
463380d4cd
@ -225,7 +225,7 @@ static void MakeTSEntry(struct ts_common_info *ts_common_info, u8 *addr,
|
||||
}
|
||||
|
||||
bool rtllib_get_ts(struct rtllib_device *ieee, struct ts_common_info **ppTS,
|
||||
u8 *addr, u8 TID, enum tr_select tx_rx_select, bool bAddNewTs)
|
||||
u8 *addr, u8 TID, enum tr_select tx_rx_select, bool add_new_ts)
|
||||
{
|
||||
u8 UP = 0;
|
||||
struct qos_tsinfo tspec;
|
||||
@ -269,7 +269,7 @@ bool rtllib_get_ts(struct rtllib_device *ieee, struct ts_common_info **ppTS,
|
||||
if (*ppTS)
|
||||
return true;
|
||||
|
||||
if (!bAddNewTs) {
|
||||
if (!add_new_ts) {
|
||||
netdev_dbg(ieee->dev, "add new TS failed(tid:%d)\n", UP);
|
||||
return false;
|
||||
}
|
||||
|
@ -1757,7 +1757,7 @@ void rtllib_tx_ba_inact_timeout(struct timer_list *t);
|
||||
void rtllib_rx_ba_inact_timeout(struct timer_list *t);
|
||||
void rtllib_reset_ba_entry(struct ba_record *ba);
|
||||
bool rtllib_get_ts(struct rtllib_device *ieee, struct ts_common_info **ppTS, u8 *addr,
|
||||
u8 TID, enum tr_select tx_rx_select, bool bAddNewTs);
|
||||
u8 TID, enum tr_select tx_rx_select, bool add_new_ts);
|
||||
void rtllib_ts_init(struct rtllib_device *ieee);
|
||||
void rtllib_ts_start_add_ba_process(struct rtllib_device *ieee,
|
||||
struct tx_ts_record *pTxTS);
|
||||
|
Loading…
Reference in New Issue
Block a user