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

Commit ae35f266 authored by Anil Belur's avatar Anil Belur Committed by Greg Kroah-Hartman
Browse files

staging: ozwpan: ozproto.c fix for "WARNING: Prefer ether_addr_copy() over...


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: default avatarAnil Belur <askb23@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 01c48ad3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -792,7 +792,7 @@ int oz_get_pd_list(struct oz_mac_addr *addr, int max_count)
		if (count >= max_count)
			break;
		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);
	return count;