Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 235623
b: refs/heads/master
c: dd18473
h: refs/heads/master
i:
  235621: d6d74de
  235619: 1b9fded
  235615: 79fe132
v: v3
  • Loading branch information
Mike McCormack authored and Greg Kroah-Hartman committed Jan 21, 2011
1 parent 14c3c44 commit cb982b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 03996954fd758c4f3b5de6528f77db16ef460eb3
refs/heads/master: dd1847332a5e5c6ac945ad12db0bc49871481d3a
7 changes: 4 additions & 3 deletions trunk/drivers/staging/rtl8192e/dot11d.h
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit cb982b1

Please sign in to comment.