[RE-RESEND PATCH 2/4] usb: musb: Fix NULL check on struct musb_request field

2021-01-23 Thread Paul Cercueil
The 'request' variable is a pointer to the 'request' field of the struct musb_request 'req' pointer. It only worked until now because the 'request' field is the first one in the musb_request structure, but as soon as that changes, the check will be invalid. Fix it preventively by doing the

Re: [RESEND PATCH 2/4] usb: musb: Fix NULL check on struct musb_request field

2020-10-29 Thread Tony Lindgren
* Paul Cercueil [201027 16:42]: > The 'request' variable is a pointer to the 'request' field of the > struct musb_request 'req' pointer. It only worked until now because > the 'request' field is the first one in the musb_request structure, but > as soon as that changes, the check will be invalid.