Commit 7aa47db9 authored by Alison Schofield's avatar Alison Schofield Committed by Greg Kroah-Hartman

staging: vt6656: simplify tests of successful urb status

Use if (status) in tests for successful urb status.

This replaces (status != 0) and (status == STATUS_SUCCESS).
(STATUS_SUCCESS is defined for NDIS status in this driver, but
was being misused)
Signed-off-by: default avatarAlison Schofield <amsfield22@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7cb07dc4
...@@ -116,7 +116,7 @@ static void vnt_start_interrupt_urb_complete(struct urb *urb) ...@@ -116,7 +116,7 @@ static void vnt_start_interrupt_urb_complete(struct urb *urb)
break; break;
} }
if (status != STATUS_SUCCESS) { if (status) {
priv->int_buf.in_use = false; priv->int_buf.in_use = false;
dev_dbg(&priv->usb->dev, "%s status = %d\n", __func__, status); dev_dbg(&priv->usb->dev, "%s status = %d\n", __func__, status);
...@@ -221,7 +221,7 @@ int vnt_submit_rx_urb(struct vnt_private *priv, struct vnt_rcb *rcb) ...@@ -221,7 +221,7 @@ int vnt_submit_rx_urb(struct vnt_private *priv, struct vnt_rcb *rcb)
rcb); rcb);
status = usb_submit_urb(urb, GFP_ATOMIC); status = usb_submit_urb(urb, GFP_ATOMIC);
if (status != 0) { if (status) {
dev_dbg(&priv->usb->dev, "Submit Rx URB failed %d\n", status); dev_dbg(&priv->usb->dev, "Submit Rx URB failed %d\n", status);
return STATUS_FAILURE; return STATUS_FAILURE;
} }
...@@ -282,7 +282,7 @@ int vnt_tx_context(struct vnt_private *priv, ...@@ -282,7 +282,7 @@ int vnt_tx_context(struct vnt_private *priv,
context); context);
status = usb_submit_urb(urb, GFP_ATOMIC); status = usb_submit_urb(urb, GFP_ATOMIC);
if (status != 0) { if (status) {
dev_dbg(&priv->usb->dev, "Submit Tx URB failed %d\n", status); dev_dbg(&priv->usb->dev, "Submit Tx URB failed %d\n", status);
context->in_use = false; context->in_use = false;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment