[PATCH 56/56] staging: r8188eu: rename camelcase GetAddr4Ptr to get_addr_4_ptr

From: Alberto Merciai
Date: Mon Jan 03 2022 - 14:58:03 EST


Rename camel case macro GetAddr4Ptr into get_addr_4_ptr

Signed-off-by: Alberto Merciai <alb3rt0.m3rciai@xxxxxxxxx>
---
drivers/staging/r8188eu/include/wifi.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/r8188eu/include/wifi.h b/drivers/staging/r8188eu/include/wifi.h
index 9d8d69cc562a..d464938a12b6 100644
--- a/drivers/staging/r8188eu/include/wifi.h
+++ b/drivers/staging/r8188eu/include/wifi.h
@@ -256,7 +256,7 @@ enum WIFI_REG_DOMAIN {

#define get_addr_3_ptr(pbuf) ((unsigned char *)((size_t)(pbuf) + 16))

-#define GetAddr4Ptr(pbuf) ((unsigned char *)((size_t)(pbuf) + 24))
+#define get_addr_4_ptr(pbuf) ((unsigned char *)((size_t)(pbuf) + 24))

static inline int IS_MCAST(unsigned char *da)
{
@@ -304,7 +304,7 @@ static inline unsigned char *get_sa(unsigned char *pframe)
sa = get_addr_2_ptr(pframe);
break;
default: /* ToDs=1, FromDs=1 */
- sa = GetAddr4Ptr(pframe);
+ sa = get_addr_4_ptr(pframe);
break;
}
return sa;
--
2.25.1