Staging: rtl8192e: Rename function rtllib_TURBO_Info()
authorTree Davies <tdavies@darkphysics.net>
Sat, 23 Dec 2023 01:59:37 +0000 (17:59 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 23 Dec 2023 13:10:53 +0000 (14:10 +0100)
Rename function rtllib_TURBO_Info to rtllib_turbo_info to fix checkpatch
warning Avoid CamelCase.

Signed-off-by: Tree Davies <tdavies@darkphysics.net>
Link: https://lore.kernel.org/r/20231223015942.418263-16-tdavies@darkphysics.net
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtllib_softmac.c

index 935d170ae01d84bb8688d3b272f1b519ec7df352..d102e400cdb3f778a1c0fdf6c9f7ade92204cbd2 100644 (file)
@@ -98,7 +98,7 @@ static void rtllib_wmm_info(struct rtllib_device *ieee, u8 **tag_p)
        *tag_p = tag;
 }
 
-static void rtllib_TURBO_Info(struct rtllib_device *ieee, u8 **tag_p)
+static void rtllib_turbo_info(struct rtllib_device *ieee, u8 **tag_p)
 {
        u8 *tag = *tag_p;
 
@@ -896,7 +896,7 @@ rtllib_association_req(struct rtllib_network *beacon,
 
        if (turbo_info_len) {
                tag = skb_put(skb, turbo_info_len);
-               rtllib_TURBO_Info(ieee, &tag);
+               rtllib_turbo_info(ieee, &tag);
        }
 
        if (ieee->ht_info->current_ht_support && ieee->ht_info->enable_ht) {