staging: wlan-ng: fix adapter initialization failure
commita67fedd788upstream. Commite895f00a84("Staging: wlan-ng: hfa384x_usb.c Fixed too long code line warnings.") moved the retrieval of the transfer buffer from the URB from the top of function hfa384x_usbin_callback to a point after reposting of the URB via a call to submit_rx_urb. The reposting of the URB allocates a new transfer buffer so the new buffer is retrieved instead of the buffer containing the response passed into the callback. This results in failure to initialize the adapter with an error reported in the system log (something like "CTLX[1] error: state(Request failed)"). This change moves the retrieval to just before the point where the URB is reposted so that the correct transfer buffer is retrieved and initialization of the device succeeds. Signed-off-by: Tim Collier <osdevtc@gmail.com> Fixes:e895f00a84("Staging: wlan-ng: hfa384x_usb.c Fixed too long code line warnings.") Cc: stable <stable@vger.kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
27a4b6c8c1
commit
f6a39f877f
1 changed files with 2 additions and 1 deletions
|
|
@ -3119,7 +3119,9 @@ static void hfa384x_usbin_callback(struct urb *urb)
|
|||
break;
|
||||
}
|
||||
|
||||
/* Save values from the RX URB before reposting overwrites it. */
|
||||
urb_status = urb->status;
|
||||
usbin = (union hfa384x_usbin *)urb->transfer_buffer;
|
||||
|
||||
if (action != ABORT) {
|
||||
/* Repost the RX URB */
|
||||
|
|
@ -3136,7 +3138,6 @@ static void hfa384x_usbin_callback(struct urb *urb)
|
|||
/* Note: the check of the sw_support field, the type field doesn't
|
||||
* have bit 12 set like the docs suggest.
|
||||
*/
|
||||
usbin = (union hfa384x_usbin *)urb->transfer_buffer;
|
||||
type = le16_to_cpu(usbin->type);
|
||||
if (HFA384x_USB_ISRXFRM(type)) {
|
||||
if (action == HANDLE) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue