diff options
author | Frank Leipold <frank.leipold@eads.net> | 2009-06-01 07:03:15 -0400 |
---|---|---|
committer | David Vrabel <david.vrabel@csr.com> | 2009-06-01 07:03:15 -0400 |
commit | b81c087f6deb049023e41ce00717202a953f3939 (patch) | |
tree | 79664a0ce2c1c3bd99370e0ffbc153e32069d546 /drivers/uwb | |
parent | 94d72176f69954d7a20e95e97dc101a4b521ce57 (diff) |
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>
Diffstat (limited to 'drivers/uwb')
-rw-r--r-- | drivers/uwb/wlp/txrx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/uwb/wlp/txrx.c b/drivers/uwb/wlp/txrx.c index cd2035768b47..86a853b84119 100644 --- a/drivers/uwb/wlp/txrx.c +++ b/drivers/uwb/wlp/txrx.c | |||
@@ -326,7 +326,7 @@ int wlp_prepare_tx_frame(struct device *dev, struct wlp *wlp, | |||
326 | int result = -EINVAL; | 326 | int result = -EINVAL; |
327 | struct ethhdr *eth_hdr = (void *) skb->data; | 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 | result = wlp_eda_for_each(&wlp->eda, wlp_wss_send_copy, skb); | 330 | result = wlp_eda_for_each(&wlp->eda, wlp_wss_send_copy, skb); |
331 | if (result < 0) { | 331 | if (result < 0) { |
332 | if (printk_ratelimit()) | 332 | if (printk_ratelimit()) |