uwb: allow WLP to be used with IPv6.

Ethernet multicast addresses are supported by mapping them to
broadcast WLP frames. These are frequently used in IPv6 traffic.

Signed-off-by: Frank Leipold <frank.leipold@eads.net>
Signed-off-by: David Vrabel <david.vrabel@csr.com>

authored by

Frank Leipold and committed by
David Vrabel
b81c087f 94d72176

+1 -1
+1 -1
drivers/uwb/wlp/txrx.c
··· 326 326 int result = -EINVAL; 327 327 struct ethhdr *eth_hdr = (void *) skb->data; 328 328 329 - if (is_broadcast_ether_addr(eth_hdr->h_dest)) { 329 + if (is_multicast_ether_addr(eth_hdr->h_dest)) { 330 330 result = wlp_eda_for_each(&wlp->eda, wlp_wss_send_copy, skb); 331 331 if (result < 0) { 332 332 if (printk_ratelimit())