Commit f70205ad authored by Tree Davies's avatar Tree Davies Committed by Greg Kroah-Hartman

Staging: rtl8192e: Rename variable RemoveAllTS

Rename variable RemoveAllTS to remove_all_ts to fix checkpatch warning Avoid
CamelCase.
Signed-off-by: default avatarTree Davies <tdavies@darkphysics.net>
Link: https://lore.kernel.org/r/20240106055556.430948-15-tdavies@darkphysics.netSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 254c59bf
...@@ -402,7 +402,7 @@ void RemovePeerTS(struct rtllib_device *ieee, u8 *addr) ...@@ -402,7 +402,7 @@ void RemovePeerTS(struct rtllib_device *ieee, u8 *addr)
} }
EXPORT_SYMBOL(RemovePeerTS); EXPORT_SYMBOL(RemovePeerTS);
void RemoveAllTS(struct rtllib_device *ieee) void remove_all_ts(struct rtllib_device *ieee)
{ {
struct ts_common_info *ts, *pTmpTS; struct ts_common_info *ts, *pTmpTS;
......
...@@ -1789,7 +1789,7 @@ void rtllib_ts_init(struct rtllib_device *ieee); ...@@ -1789,7 +1789,7 @@ void rtllib_ts_init(struct rtllib_device *ieee);
void TsStartAddBaProcess(struct rtllib_device *ieee, void TsStartAddBaProcess(struct rtllib_device *ieee,
struct tx_ts_record *pTxTS); struct tx_ts_record *pTxTS);
void RemovePeerTS(struct rtllib_device *ieee, u8 *addr); void RemovePeerTS(struct rtllib_device *ieee, u8 *addr);
void RemoveAllTS(struct rtllib_device *ieee); void remove_all_ts(struct rtllib_device *ieee);
static inline const char *escape_essid(const char *essid, u8 essid_len) static inline const char *escape_essid(const char *essid, u8 essid_len)
{ {
......
...@@ -2002,7 +2002,7 @@ void rtllib_stop_protocol(struct rtllib_device *ieee) ...@@ -2002,7 +2002,7 @@ void rtllib_stop_protocol(struct rtllib_device *ieee)
rtllib_disassociate(ieee); rtllib_disassociate(ieee);
} }
RemoveAllTS(ieee); remove_all_ts(ieee);
ieee->proto_stoppping = 0; ieee->proto_stoppping = 0;
kfree(ieee->assocreq_ies); kfree(ieee->assocreq_ies);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment