Commit 23dbf877 authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman

staging: vt6656: struct vnt_rcb remove unused members

Remove Next and Ref
Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1b6953dd
...@@ -219,8 +219,6 @@ enum { ...@@ -219,8 +219,6 @@ enum {
/* RCB (Receive Control Block) */ /* RCB (Receive Control Block) */
struct vnt_rcb { struct vnt_rcb {
void *Next;
signed long Ref;
void *pDevice; void *pDevice;
struct urb *pUrb; struct urb *pUrb;
struct sk_buff *skb; struct sk_buff *skb;
......
...@@ -207,7 +207,6 @@ int vnt_submit_rx_urb(struct vnt_private *priv, struct vnt_rcb *rcb) ...@@ -207,7 +207,6 @@ int vnt_submit_rx_urb(struct vnt_private *priv, struct vnt_rcb *rcb)
return STATUS_FAILURE ; return STATUS_FAILURE ;
} }
rcb->Ref = 1;
rcb->bBoolInUse = true; rcb->bBoolInUse = true;
return status; return status;
......
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