Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
udplite conflict is resolved by taking what 'net-next' did which removed the backlog receive method assignment, since it is no longer necessary. Two entries were added to the non-priv ethtool operations switch statement, one in 'net' and one in 'net-next, so simple overlapping changes. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -3225,11 +3225,11 @@ static bool ffs_func_req_match(struct usb_function *f,
|
||||
|
||||
switch (creq->bRequestType & USB_RECIP_MASK) {
|
||||
case USB_RECIP_INTERFACE:
|
||||
return ffs_func_revmap_intf(func,
|
||||
le16_to_cpu(creq->wIndex) >= 0);
|
||||
return (ffs_func_revmap_intf(func,
|
||||
le16_to_cpu(creq->wIndex)) >= 0);
|
||||
case USB_RECIP_ENDPOINT:
|
||||
return ffs_func_revmap_ep(func,
|
||||
le16_to_cpu(creq->wIndex) >= 0);
|
||||
return (ffs_func_revmap_ep(func,
|
||||
le16_to_cpu(creq->wIndex)) >= 0);
|
||||
default:
|
||||
return (bool) (func->ffs->user_flags &
|
||||
FUNCTIONFS_ALL_CTRL_RECIP);
|
||||
|
Reference in New Issue
Block a user