mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-11 16:29:05 +00:00
usb: gadget: f_subset: switch over to PTR_RET
this patch fixes the following Coccinelle warning: drivers/usb/gadget/f_subset.c:279:8-14: WARNING: \ PTR_RET can be used Signed-off-by: Felipe Balbi <balbi@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ade79d13a8
commit
f3c7364982
@ -276,7 +276,7 @@ static int geth_set_alt(struct usb_function *f, unsigned intf, unsigned alt)
|
|||||||
}
|
}
|
||||||
|
|
||||||
net = gether_connect(&geth->port);
|
net = gether_connect(&geth->port);
|
||||||
return IS_ERR(net) ? PTR_ERR(net) : 0;
|
return PTR_RET(net);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void geth_disable(struct usb_function *f)
|
static void geth_disable(struct usb_function *f)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user