Skip to content

Commit d70c91a

Browse files
treedaviesgregkh
authored andcommitted
Staging: rtl8192e: Rename function rtllib_MFIE_Grate()
Rename function rtllib_MFIE_Grate to rtllib_mfie_grate to fix checkpatch warning Avoid CamelCase. Signed-off-by: Tree Davies <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 4f6054f commit d70c91a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/staging/rtl8192e/rtllib_softmac.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ static void rtllib_mfie_brate(struct rtllib_device *ieee, u8 **tag_p)
6161
*tag_p = tag;
6262
}
6363

64-
static void rtllib_MFIE_Grate(struct rtllib_device *ieee, u8 **tag_p)
64+
static void rtllib_mfie_grate(struct rtllib_device *ieee, u8 **tag_p)
6565
{
6666
u8 *tag = *tag_p;
6767

@@ -342,7 +342,7 @@ static inline struct sk_buff *rtllib_probe_req(struct rtllib_device *ieee)
342342
tag += len;
343343

344344
rtllib_mfie_brate(ieee, &tag);
345-
rtllib_MFIE_Grate(ieee, &tag);
345+
rtllib_mfie_grate(ieee, &tag);
346346

347347
return skb;
348348
}

0 commit comments

Comments
 (0)