Merge branch 'for-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/dvrabel/uwb

* 'for-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/dvrabel/uwb:
uwb: allow WLP to be used with IPv6.
uwb: event_size should be signed

+2 -2
+1 -1
drivers/uwb/hwa-rc.c
··· 501 501 int result = -ENOANO; 502 502 struct uwb_rceb *rceb = *header; 503 503 int event = le16_to_cpu(rceb->wEvent); 504 - size_t event_size; 504 + ssize_t event_size; 505 505 size_t core_size, offset; 506 506 507 507 if (rceb->bEventType != UWB_RC_CET_GENERAL)
+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())