Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dd184733 authored by Mike McCormack's avatar Mike McCormack Committed by Greg Kroah-Hartman
Browse files

Staging: rtl8192e: Convert cpMacAddr macro to inline function

parent 03996954
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -41,9 +41,10 @@ typedef struct _RT_DOT11D_INFO {
	DOT11D_STATE State;
} RT_DOT11D_INFO, *PRT_DOT11D_INFO;

#define cpMacAddr(des, src) ((des)[0] = (src)[0], (des)[1] = (src)[1], \
			(des)[2] = (src)[2], (des)[3] = (src)[3], \
			(des)[4] = (src)[4], (des)[5] = (src)[5])
static inline void cpMacAddr(unsigned char *des, unsigned char *src)
{
	memcpy(des, src, 6);
}

#define GET_DOT11D_INFO(__pIeeeDev) ((PRT_DOT11D_INFO) \
			((__pIeeeDev)->pDot11dInfo))