mirror of
https://github.com/torvalds/linux.git
synced 2024-12-18 17:12:55 +00:00
greybus: es1: no need to assign a variable we return directly
In next_free_urb(), just return usb_alloc_urb(), don't waste the time assigning it to a local variable that we then return. Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
This commit is contained in:
parent
580c47d8b4
commit
2ec515bfff
@ -179,9 +179,7 @@ static struct urb *next_free_urb(struct es1_ap_dev *es1, gfp_t gfp_mask)
|
||||
*/
|
||||
dev_err(&es1->usb_dev->dev,
|
||||
"No free CPort OUT urbs, having to dynamically allocate one!\n");
|
||||
urb = usb_alloc_urb(0, gfp_mask);
|
||||
|
||||
return urb;
|
||||
return usb_alloc_urb(0, gfp_mask);
|
||||
}
|
||||
|
||||
static void free_urb(struct es1_ap_dev *es1, struct urb *urb)
|
||||
|
Loading…
Reference in New Issue
Block a user