瀏覽代碼

staging: ozwpan: ozproto.c fix for "WARNING: Prefer ether_addr_copy() over memcpy() if the Ethernet addresses are __aligned(2)"

Fixed the warning message by replacing memcpy() with ether_addr_copy()

Signed-off-by: Anil Belur <askb23@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Anil Belur 11 年之前
父節點
當前提交
ae35f26644
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/staging/ozwpan/ozproto.c

+ 1 - 1
drivers/staging/ozwpan/ozproto.c

@@ -792,7 +792,7 @@ int oz_get_pd_list(struct oz_mac_addr *addr, int max_count)
 		if (count >= max_count)
 		if (count >= max_count)
 			break;
 			break;
 		pd = container_of(e, struct oz_pd, link);
 		pd = container_of(e, struct oz_pd, link);
-		memcpy(&addr[count++], pd->mac_addr, ETH_ALEN);
+		ether_addr_copy((u8 *)&addr[count++], pd->mac_addr);
 	}
 	}
 	spin_unlock_bh(&g_polling_lock);
 	spin_unlock_bh(&g_polling_lock);
 	return count;
 	return count;