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>
This commit is contained in:
parent
9d4c0c9f6a
commit
8f3614c5c6
|
@ -2458,7 +2458,8 @@ int hfa384x_drvr_start(struct hfa384x *hw)
|
||||||
* ok
|
* ok
|
||||||
*/
|
*/
|
||||||
result =
|
result =
|
||||||
usb_get_std_status(hw->usb, USB_RECIP_ENDPOINT, hw->endp_in, &status);
|
usb_get_std_status(hw->usb, USB_RECIP_ENDPOINT, hw->endp_in,
|
||||||
|
&status);
|
||||||
if (result < 0) {
|
if (result < 0) {
|
||||||
netdev_err(hw->wlandev->netdev, "Cannot get bulk in endpoint status.\n");
|
netdev_err(hw->wlandev->netdev, "Cannot get bulk in endpoint status.\n");
|
||||||
goto done;
|
goto done;
|
||||||
|
@ -2467,7 +2468,8 @@ int hfa384x_drvr_start(struct hfa384x *hw)
|
||||||
netdev_err(hw->wlandev->netdev, "Failed to reset bulk in endpoint.\n");
|
netdev_err(hw->wlandev->netdev, "Failed to reset bulk in endpoint.\n");
|
||||||
|
|
||||||
result =
|
result =
|
||||||
usb_get_std_status(hw->usb, USB_RECIP_ENDPOINT, hw->endp_out, &status);
|
usb_get_std_status(hw->usb, USB_RECIP_ENDPOINT, hw->endp_out,
|
||||||
|
&status);
|
||||||
if (result < 0) {
|
if (result < 0) {
|
||||||
netdev_err(hw->wlandev->netdev, "Cannot get bulk out endpoint status.\n");
|
netdev_err(hw->wlandev->netdev, "Cannot get bulk out endpoint status.\n");
|
||||||
goto done;
|
goto done;
|
||||||
|
|
Loading…
Reference in New Issue