[PATCH 3/6] staging: rtl8192e: rename macro arguments to avoid camelcase - style

Himadri Pandya himadri18.07 at gmail.com
Mon Feb 4 12:25:45 UTC 2019


Fix checkpatch warning: Avoid CamelCase by renaming following macro
arguments
	__pIeeeDev -> __p_ieee_dev
	__pTa -> __p_ta

Signed-off-by: Himadri Pandya <himadri18.07 at gmail.com>
---
 drivers/staging/rtl8192e/dot11d.h | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/drivers/staging/rtl8192e/dot11d.h b/drivers/staging/rtl8192e/dot11d.h
index 7faf4f67a7bf..0df31c79b5fd 100644
--- a/drivers/staging/rtl8192e/dot11d.h
+++ b/drivers/staging/rtl8192e/dot11d.h
@@ -58,28 +58,28 @@ static inline void cp_mac_addr(unsigned char *des, unsigned char *src)
 	memcpy(des, src, 6);
 }
 
-#define GET_DOT11D_INFO(__pIeeeDev)			\
-	 ((struct rt_dot11d_info *)((__pIeeeDev)->pDot11dInfo))
+#define GET_DOT11D_INFO(__p_ieee_dev)			\
+	 ((struct rt_dot11d_info *)((__p_ieee_dev)->pDot11dInfo))
 
-#define IS_DOT11D_ENABLE(__pIeeeDev)			\
-	 (GET_DOT11D_INFO(__pIeeeDev)->b_enabled)
-#define IS_COUNTRY_IE_VALID(__pIeeeDev)			\
-	(GET_DOT11D_INFO(__pIeeeDev)->country_ie_len > 0)
+#define IS_DOT11D_ENABLE(__p_ieee_dev)			\
+	 (GET_DOT11D_INFO(__p_ieee_dev)->b_enabled)
+#define IS_COUNTRY_IE_VALID(__p_ieee_dev)			\
+	(GET_DOT11D_INFO(__p_ieee_dev)->country_ie_len > 0)
 
-#define IS_EQUAL_CIE_SRC(__pIeeeDev, __pTa)		\
+#define IS_EQUAL_CIE_SRC(__p_ieee_dev, __p_ta)		\
 	 ether_addr_equal_unaligned( \
-		GET_DOT11D_INFO(__pIeeeDev)->country_ie_src_addr, __pTa)
-#define UPDATE_CIE_SRC(__pIeeeDev, __pTa)		\
-	cp_mac_addr(GET_DOT11D_INFO(__pIeeeDev)->country_ie_src_addr, __pTa)
+		GET_DOT11D_INFO(__p_ieee_dev)->country_ie_src_addr, __p_ta)
+#define UPDATE_CIE_SRC(__p_ieee_dev, __p_ta)		\
+	cp_mac_addr(GET_DOT11D_INFO(__p_ieee_dev)->country_ie_src_addr, __p_ta)
 
-#define GET_CIE_WATCHDOG(__pIeeeDev)				\
-	 (GET_DOT11D_INFO(__pIeeeDev)->country_ie_watchdog)
-static inline void RESET_CIE_WATCHDOG(struct rtllib_device *__pIeeeDev)
+#define GET_CIE_WATCHDOG(__p_ieee_dev)				\
+	 (GET_DOT11D_INFO(__p_ieee_dev)->country_ie_watchdog)
+static inline void RESET_CIE_WATCHDOG(struct rtllib_device *__p_ieee_dev)
 {
-	GET_CIE_WATCHDOG(__pIeeeDev) = 0;
+	GET_CIE_WATCHDOG(__p_ieee_dev) = 0;
 }
 
-#define UPDATE_CIE_WATCHDOG(__pIeeeDev) (++GET_CIE_WATCHDOG(__pIeeeDev))
+#define UPDATE_CIE_WATCHDOG(__p_ieee_dev) (++GET_CIE_WATCHDOG(__p_ieee_dev))
 
 void dot11d_init(struct rtllib_device *dev);
 void dot11d_channel_map(u8 channel_plan, struct rtllib_device *ieee);
-- 
2.17.1



More information about the devel mailing list