Re: [PATCH 0/4] net: usb: avoid using usb_control_msg() directly

2020-09-23 Thread Greg KH
On Wed, Sep 23, 2020 at 02:35:15PM +0530, Himadri Pandya wrote: > A recent bug-fix shaded light on possible incorrect use of > usb_control_msg() without proper error check. This resulted in > introducing new usb core api wrapper functions usb_control_msg_send() > and usb_control_msg_recv() by Greg

[PATCH 0/4] net: usb: avoid using usb_control_msg() directly

2020-09-23 Thread Himadri Pandya
A recent bug-fix shaded light on possible incorrect use of usb_control_msg() without proper error check. This resulted in introducing new usb core api wrapper functions usb_control_msg_send() and usb_control_msg_recv() by Greg KH. This patch series continue the clean-up using the new functions. Hi