]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
staging: rtl8192e: rename variable HTConstructCapabilityElement
authorGary Rookard <garyrookard@fastmail.org>
Mon, 11 Dec 2023 00:13:33 +0000 (19:13 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 15 Dec 2023 12:35:44 +0000 (13:35 +0100)
Coding style issue, checkpatch Avoid CamelCase,
rename it. HTConstructCapabilityElement -> ht_construct_capability_element

Signed-off-by: Gary Rookard <garyrookard@fastmail.org>
Link: https://lore.kernel.org/r/20231211001335.26169-4-garyrookard@fastmail.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl819x_HTProc.c
drivers/staging/rtl8192e/rtllib.h
drivers/staging/rtl8192e/rtllib_softmac.c

index a4405e8e32c60313e47227eb3b19e6bad6671652..4d6189be6e1bfdfcb6277ce5799ed7c4220a77ef 100644 (file)
@@ -237,7 +237,7 @@ void ht_reset_iot_setting(struct rt_hi_throughput *ht_info)
        ht_info->iot_ra_func = 0;
 }
 
-void HTConstructCapabilityElement(struct rtllib_device *ieee, u8 *posHTCap,
+void ht_construct_capability_element(struct rtllib_device *ieee, u8 *posHTCap,
                                  u8 *len, u8 IsEncrypt, bool bAssoc)
 {
        struct rt_hi_throughput *pHT = ieee->ht_info;
index e8c795faf4f9abd419267cc4721e2847d7cd34e4..ff3ba9bca0237e398e6e35ae14dee857a92fa5ca 100644 (file)
@@ -1755,7 +1755,7 @@ void HTSetConnectBwMode(struct rtllib_device *ieee,
                        enum ht_channel_width bandwidth,
                        enum ht_extchnl_offset Offset);
 void ht_update_default_setting(struct rtllib_device *ieee);
-void HTConstructCapabilityElement(struct rtllib_device *ieee,
+void ht_construct_capability_element(struct rtllib_device *ieee,
                                  u8 *posHTCap, u8 *len,
                                  u8 isEncrypt, bool bAssoc);
 void HTConstructRT2RTAggElement(struct rtllib_device *ieee,
index 336a5776afdbfe9a6aba3e76df7941928f900b0a..fe118548d2a345cb7e3c5132b9f7232328cbc410 100644 (file)
@@ -730,7 +730,7 @@ rtllib_association_req(struct rtllib_network *beacon,
        if (ieee->ht_info->current_ht_support && ieee->ht_info->enable_ht) {
                ht_cap_buf = (u8 *)&(ieee->ht_info->SelfHTCap);
                ht_cap_len = sizeof(ieee->ht_info->SelfHTCap);
-               HTConstructCapabilityElement(ieee, ht_cap_buf, &ht_cap_len,
+               ht_construct_capability_element(ieee, ht_cap_buf, &ht_cap_len,
                                             encrypt, true);
                if (ieee->ht_info->current_rt2rt_aggregation) {
                        realtek_ie_buf = ieee->ht_info->sz_rt2rt_agg_buf;