Commit e7dd3d47 authored by Himadri Pandya's avatar Himadri Pandya Committed by Greg Kroah-Hartman

staging: rtl8192e: rename function cpMacAddr to copy_mac_addr - style

Rename function cpMacAddr to copy_mac_addr in order to fix checkpatch
warning: Avoid CamelCase and make the function name more readable,
understandable.
Signed-off-by: default avatarHimadri Pandya <himadri18.07@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 479826cc
...@@ -53,7 +53,7 @@ struct rt_dot11d_info { ...@@ -53,7 +53,7 @@ struct rt_dot11d_info {
enum dot11d_state state; enum dot11d_state state;
}; };
static inline void cpMacAddr(unsigned char *des, unsigned char *src) static inline void copy_mac_addr(unsigned char *des, unsigned char *src)
{ {
memcpy(des, src, 6); memcpy(des, src, 6);
} }
...@@ -70,7 +70,7 @@ static inline void cpMacAddr(unsigned char *des, unsigned char *src) ...@@ -70,7 +70,7 @@ static inline void cpMacAddr(unsigned char *des, unsigned char *src)
ether_addr_equal_unaligned( \ ether_addr_equal_unaligned( \
GET_DOT11D_INFO(__pIeeeDev)->country_src_addr, __pTa) GET_DOT11D_INFO(__pIeeeDev)->country_src_addr, __pTa)
#define UPDATE_CIE_SRC(__pIeeeDev, __pTa) \ #define UPDATE_CIE_SRC(__pIeeeDev, __pTa) \
cpMacAddr(GET_DOT11D_INFO(__pIeeeDev)->country_src_addr, __pTa) copy_mac_addr(GET_DOT11D_INFO(__pIeeeDev)->country_src_addr, __pTa)
#define GET_CIE_WATCHDOG(__pIeeeDev) \ #define GET_CIE_WATCHDOG(__pIeeeDev) \
(GET_DOT11D_INFO(__pIeeeDev)->country_watchdog) (GET_DOT11D_INFO(__pIeeeDev)->country_watchdog)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment