From: Ioana Ciornei Date: Wed, 18 Mar 2015 13:26:05 +0000 (+0200) Subject: staging: prism2sta: Replace memcpy with ether_add_copy X-Git-Tag: omap-for-v4.1/fixes-rc1~165^2~138^2~323 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7078db9dffde19f4ea82acb0c2d8a9f81531e15a;p=pandora-kernel.git staging: prism2sta: Replace memcpy with ether_add_copy Replace memcpy() with ether_addr_copy() since addresses are __aligned(2). The 2 structures are aligned to u16 as showed below: typedef struct hfa384x_authenticateStation_data { u8 address[ETH_ALEN]; /* 0 6 */ u16 status; /* 6 2 */ u16 algorithm; /* 8 2 */ } __packed hfa384x_authenticateStation_data_t; Total size: 10 typedef struct hfa384x_AuthRequest { u8 sta_addr[ETH_ALEN]; /* 0 6 */ u16 algorithm; /* 6 2 */ } __packed hfa384x_AuthReq_t; Total size: 8 Signed-off-by: Ioana Ciornei Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed