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

staging: vt6656: Remove unused variable bEventAvailable.

Flips from true to false but does nothing.
Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 81aec60e
...@@ -417,7 +417,6 @@ struct vnt_private { ...@@ -417,7 +417,6 @@ struct vnt_private {
/* Variables to track resources for the Interrupt In Pipe */ /* Variables to track resources for the Interrupt In Pipe */
struct vnt_interrupt_buffer int_buf; struct vnt_interrupt_buffer int_buf;
int bEventAvailable;
/* default config from file by user setting */ /* default config from file by user setting */
DEFAULT_CONFIG config_file; DEFAULT_CONFIG config_file;
......
...@@ -998,7 +998,6 @@ static int device_open(struct net_device *dev) ...@@ -998,7 +998,6 @@ static int device_open(struct net_device *dev)
pDevice->eEncryptionStatus = Ndis802_11EncryptionDisabled; pDevice->eEncryptionStatus = Ndis802_11EncryptionDisabled;
pDevice->bIsRxWorkItemQueued = true; pDevice->bIsRxWorkItemQueued = true;
pDevice->bEventAvailable = false;
pDevice->bWPADEVUp = false; pDevice->bWPADEVUp = false;
pDevice->bwextstep0 = false; pDevice->bwextstep0 = false;
......
...@@ -376,7 +376,6 @@ static void s_nsInterruptUsbIoCompleteRead(struct urb *urb) ...@@ -376,7 +376,6 @@ static void s_nsInterruptUsbIoCompleteRead(struct urb *urb)
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
"IntUSBIoCompleteControl STATUS = %d\n", status); "IntUSBIoCompleteControl STATUS = %d\n", status);
} else { } else {
priv->bEventAvailable = true;
INTnsProcessData(priv); INTnsProcessData(priv);
} }
......
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