mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 18:37:58 -04:00
Staging: rtl8192e: Rename variable TSInfo
Rename variable TSInfo to ts_info 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/20231014044435.11947-3-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
ab79cedb6b
commit
72f471e177
@@ -474,7 +474,7 @@ void rtllib_ts_init_add_ba(struct rtllib_device *ieee, struct tx_ts_record *pTS,
|
||||
ba->dialog_token++;
|
||||
ba->ba_param_set.field.amsdu_support = 0;
|
||||
ba->ba_param_set.field.ba_policy = policy;
|
||||
ba->ba_param_set.field.tid = pTS->TsCommonInfo.TSpec.f.TSInfo.field.ucTSID;
|
||||
ba->ba_param_set.field.tid = pTS->TsCommonInfo.TSpec.f.ts_info.field.ucTSID;
|
||||
ba->ba_param_set.field.buffer_size = 32;
|
||||
ba->ba_timeout_value = 0;
|
||||
ba->ba_start_seq_ctrl.field.seq_num = (pTS->TxCurSeq + 3) % 4096;
|
||||
|
||||
@@ -60,7 +60,7 @@ union tspec_body {
|
||||
u8 charData[55];
|
||||
|
||||
struct {
|
||||
union qos_tsinfo TSInfo;
|
||||
union qos_tsinfo ts_info;
|
||||
u16 NominalMSDUsize;
|
||||
u16 MaxMSDUsize;
|
||||
u32 MinServiceItv;
|
||||
|
||||
@@ -201,8 +201,8 @@ static struct ts_common_info *SearchAdmitTRStream(struct rtllib_device *ieee,
|
||||
continue;
|
||||
list_for_each_entry(pRet, psearch_list, List) {
|
||||
if (memcmp(pRet->addr, addr, 6) == 0 &&
|
||||
pRet->TSpec.f.TSInfo.field.ucTSID == TID &&
|
||||
pRet->TSpec.f.TSInfo.field.ucDirection == dir)
|
||||
pRet->TSpec.f.ts_info.field.ucTSID == TID &&
|
||||
pRet->TSpec.f.ts_info.field.ucDirection == dir)
|
||||
break;
|
||||
}
|
||||
if (&pRet->List != psearch_list)
|
||||
@@ -242,7 +242,7 @@ bool rtllib_get_ts(struct rtllib_device *ieee, struct ts_common_info **ppTS,
|
||||
{
|
||||
u8 UP = 0;
|
||||
union tspec_body TSpec;
|
||||
union qos_tsinfo *ts_info = &TSpec.f.TSInfo;
|
||||
union qos_tsinfo *ts_info = &TSpec.f.ts_info;
|
||||
struct list_head *pUnusedList;
|
||||
struct list_head *pAddmitList;
|
||||
enum direction_value Dir;
|
||||
|
||||
Reference in New Issue
Block a user