Skip to content

Commit 4f6054f

Browse files
treedaviesgregkh
authored andcommitted
Staging: rtl8192e: Rename function rtllib_MFIE_Brate()
Rename function rtllib_MFIE_Brate to rtllib_mfie_brate 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 75a946f commit 4f6054f

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
@@ -44,7 +44,7 @@ static unsigned int rtllib_MFIE_rate_len(struct rtllib_device *ieee)
4444
* Then it updates the pointer so that
4545
* it points after the new MFIE tag added.
4646
*/
47-
static void rtllib_MFIE_Brate(struct rtllib_device *ieee, u8 **tag_p)
47+
static void rtllib_mfie_brate(struct rtllib_device *ieee, u8 **tag_p)
4848
{
4949
u8 *tag = *tag_p;
5050

@@ -341,7 +341,7 @@ static inline struct sk_buff *rtllib_probe_req(struct rtllib_device *ieee)
341341
memcpy(tag, ieee->current_network.ssid, len);
342342
tag += len;
343343

344-
rtllib_MFIE_Brate(ieee, &tag);
344+
rtllib_mfie_brate(ieee, &tag);
345345
rtllib_MFIE_Grate(ieee, &tag);
346346

347347
return skb;

0 commit comments

Comments
 (0)