diff options
author | Andy Pusch <drag@black-pixel.net> | 2017-12-23 10:37:56 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-01-08 10:41:36 -0500 |
commit | 8f3614c5c67237ad9b3916c8150b098f133ac808 (patch) | |
tree | 8a513542a42a2b72a2e51d265e9b628faf1661a3 | |
parent | 9d4c0c9f6a747a9bdec03057be4193994839ec87 (diff) |
Staging: wlan-ng: hfa384x_usb: fixed two line limit coding style issues
Fixed two coding style issues.
Signed-off-by: Andy Pusch <drag@black-pixel.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/wlan-ng/hfa384x_usb.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/staging/wlan-ng/hfa384x_usb.c b/drivers/staging/wlan-ng/hfa384x_usb.c index 84f3657e26a2..555711bc12f0 100644 --- a/drivers/staging/wlan-ng/hfa384x_usb.c +++ b/drivers/staging/wlan-ng/hfa384x_usb.c | |||
@@ -2458,7 +2458,8 @@ int hfa384x_drvr_start(struct hfa384x *hw) | |||
2458 | * ok | 2458 | * ok |
2459 | */ | 2459 | */ |
2460 | result = | 2460 | result = |
2461 | usb_get_std_status(hw->usb, USB_RECIP_ENDPOINT, hw->endp_in, &status); | 2461 | usb_get_std_status(hw->usb, USB_RECIP_ENDPOINT, hw->endp_in, |
2462 | &status); | ||
2462 | if (result < 0) { | 2463 | if (result < 0) { |
2463 | netdev_err(hw->wlandev->netdev, "Cannot get bulk in endpoint status.\n"); | 2464 | netdev_err(hw->wlandev->netdev, "Cannot get bulk in endpoint status.\n"); |
2464 | goto done; | 2465 | goto done; |
@@ -2467,7 +2468,8 @@ int hfa384x_drvr_start(struct hfa384x *hw) | |||
2467 | netdev_err(hw->wlandev->netdev, "Failed to reset bulk in endpoint.\n"); | 2468 | netdev_err(hw->wlandev->netdev, "Failed to reset bulk in endpoint.\n"); |
2468 | 2469 | ||
2469 | result = | 2470 | result = |
2470 | usb_get_std_status(hw->usb, USB_RECIP_ENDPOINT, hw->endp_out, &status); | 2471 | usb_get_std_status(hw->usb, USB_RECIP_ENDPOINT, hw->endp_out, |
2472 | &status); | ||
2471 | if (result < 0) { | 2473 | if (result < 0) { |
2472 | netdev_err(hw->wlandev->netdev, "Cannot get bulk out endpoint status.\n"); | 2474 | netdev_err(hw->wlandev->netdev, "Cannot get bulk out endpoint status.\n"); |
2473 | goto done; | 2475 | goto done; |