mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-13 23:45:26 -04:00
Staging: rtl8192e: Rename variable DelayBA
Rename variable DelayBA to delay_ba 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/20240428230106.6548-14-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
982c4a8b5a
commit
165bb7d4d0
@@ -32,7 +32,7 @@ struct ht_capab_ele {
|
||||
u8 short_gi_40mhz:1;
|
||||
u8 tx_stbc:1;
|
||||
u8 rx_stbc:2;
|
||||
u8 DelayBA:1;
|
||||
u8 delay_ba:1;
|
||||
u8 MaxAMSDUSize:1;
|
||||
u8 DssCCk:1;
|
||||
u8 PSMP:1;
|
||||
|
||||
@@ -264,7 +264,7 @@ void ht_construct_capability_element(struct rtllib_device *ieee, u8 *pos_ht_cap,
|
||||
|
||||
cap_ele->tx_stbc = 1;
|
||||
cap_ele->rx_stbc = 0;
|
||||
cap_ele->DelayBA = 0;
|
||||
cap_ele->delay_ba = 0;
|
||||
cap_ele->MaxAMSDUSize = (MAX_RECEIVE_BUFFER_SIZE >= 7935) ? 1 : 0;
|
||||
cap_ele->DssCCk = 1;
|
||||
cap_ele->PSMP = 0;
|
||||
|
||||
Reference in New Issue
Block a user