Commit d6e0eabd authored by Tree Davies's avatar Tree Davies Committed by Greg Kroah-Hartman
Browse files

Staging: rtl8192e: Rename variable TxSTBC



Rename variable TxSTBC to tx_stbc
to fix checkpatch warning Avoid CamelCase.

Signed-off-by: default avatarTree Davies <tdavies@darkphysics.net>
Tested-by: default avatarPhilipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/20240428230106.6548-12-tdavies@darkphysics.net


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 86272f2b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ struct ht_capab_ele {
	u8	green_field:1;
	u8	short_gi_20mhz:1;
	u8	short_gi_40mhz:1;
	u8	TxSTBC:1;
	u8	tx_stbc:1;
	u8	RxSTBC:2;
	u8	DelayBA:1;
	u8	MaxAMSDUSize:1;
+1 −1
Original line number Diff line number Diff line
@@ -262,7 +262,7 @@ void ht_construct_capability_element(struct rtllib_device *ieee, u8 *pos_ht_cap,
	cap_ele->short_gi_20mhz		= 1;
	cap_ele->short_gi_40mhz		= 1;

	cap_ele->TxSTBC			= 1;
	cap_ele->tx_stbc			= 1;
	cap_ele->RxSTBC			= 0;
	cap_ele->DelayBA		= 0;
	cap_ele->MaxAMSDUSize = (MAX_RECEIVE_BUFFER_SIZE >= 7935) ? 1 : 0;