uwb: allow WLP to be used with IPv6.
authorFrank Leipold <frank.leipold@eads.net>
Mon, 1 Jun 2009 11:03:15 +0000 (12:03 +0100)
committerDavid Vrabel <david.vrabel@csr.com>
Mon, 1 Jun 2009 11:03:15 +0000 (12:03 +0100)
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>
drivers/uwb/wlp/txrx.c

index cd20357..86a853b 100644 (file)
@@ -326,7 +326,7 @@ int wlp_prepare_tx_frame(struct device *dev, struct wlp *wlp,
        int result = -EINVAL;
        struct ethhdr *eth_hdr = (void *) skb->data;
 
-       if (is_broadcast_ether_addr(eth_hdr->h_dest)) {
+       if (is_multicast_ether_addr(eth_hdr->h_dest)) {
                result = wlp_eda_for_each(&wlp->eda, wlp_wss_send_copy, skb);
                if (result < 0) {
                        if (printk_ratelimit())