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 int result = -ENOANO; 502 struct uwb_rceb *rceb = *header; 503 int event = le16_to_cpu(rceb->wEvent); 504 - size_t event_size; 505 size_t core_size, offset; 506 507 if (rceb->bEventType != UWB_RC_CET_GENERAL)
··· 501 int result = -ENOANO; 502 struct uwb_rceb *rceb = *header; 503 int event = le16_to_cpu(rceb->wEvent); 504 + ssize_t event_size; 505 size_t core_size, offset; 506 507 if (rceb->bEventType != UWB_RC_CET_GENERAL)
+1 -1
drivers/uwb/wlp/txrx.c
··· 326 int result = -EINVAL; 327 struct ethhdr *eth_hdr = (void *) skb->data; 328 329 - if (is_broadcast_ether_addr(eth_hdr->h_dest)) { 330 result = wlp_eda_for_each(&wlp->eda, wlp_wss_send_copy, skb); 331 if (result < 0) { 332 if (printk_ratelimit())
··· 326 int result = -EINVAL; 327 struct ethhdr *eth_hdr = (void *) skb->data; 328 329 + if (is_multicast_ether_addr(eth_hdr->h_dest)) { 330 result = wlp_eda_for_each(&wlp->eda, wlp_wss_send_copy, skb); 331 if (result < 0) { 332 if (printk_ratelimit())