can: etas_es58x: remove useless calls to usb_fill_bulk_urb()
authorVincent Mailhol <mailhol.vincent@wanadoo.fr>
Fri, 29 Jul 2022 08:09:02 +0000 (17:09 +0900)
committerMarc Kleine-Budde <mkl@pengutronix.de>
Fri, 29 Jul 2022 08:14:53 +0000 (10:14 +0200)
commite0f3907b3901df814c12ca54d65ef37000ce1515
treeea44e8670b200251a2ede61ab005a2ae8eea6166
parent12a18d79dc14c80b358dbd26461614b97f2ea4a6
can: etas_es58x: remove useless calls to usb_fill_bulk_urb()

Aside of urb->transfer_buffer_length and urb->context which might
change in the TX path, all the other URB parameters remains constant
during runtime. So, there is no reasons to call usb_fill_bulk_urb()
each time before submitting an URB.

Make sure to initialize all the fields of the URB at allocation
time. For the TX branch, replace the call usb_fill_bulk_urb() by an
assignment of urb->context. urb->urb->transfer_buffer_length is
already set by the caller functions, no need to set it again. For the
RX branch, because all parameters are unchanged, simply remove the
call to usb_fill_bulk_urb().

Signed-off-by: Vincent Mailhol <mailhol.vincent@wanadoo.fr>
Link: https://lore.kernel.org/all/20220729080902.25839-1-mailhol.vincent@wanadoo.fr
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
drivers/net/can/usb/etas_es58x/es58x_core.c