[PATCH v2] Staging: slicoss: slicoss: replaced memcpy with ether_addr_copy

Abel Moyo abelmoyo.ab at gmail.com
Fri Oct 3 20:19:44 UTC 2014


Replaced memcpy with ether_addr_copy in slic_mcast_add_list.
Addresses are _aligned(2) as the struct mcast_address has only
single field of type unsigned char.

Signed-off-by: Abel Moyo <abelmoyo.ab at gmail.com>
---
Changes in v2:
	- Indicate how ether_addr_copy is safe in changelog

 drivers/staging/slicoss/slicoss.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/slicoss/slicoss.c b/drivers/staging/slicoss/slicoss.c
index 56ca3b6..f48eeb1 100644
--- a/drivers/staging/slicoss/slicoss.c
+++ b/drivers/staging/slicoss/slicoss.c
@@ -1788,7 +1788,7 @@ static int slic_mcast_add_list(struct adapter *adapter, char *address)
 	if (mcaddr == NULL)
 		return 1;
 
-	memcpy(mcaddr->address, address, ETH_ALEN);
+	ether_addr_copy(mcaddr->address, address);
 
 	mcaddr->next = adapter->mcastaddrs;
 	adapter->mcastaddrs = mcaddr;
-- 
1.8.5.5



More information about the devel mailing list