This variable is never set. Signed-off-by: Malcolm Priestley <tvboxspy@xxxxxxxxx> --- drivers/staging/vt6656/card.c | 2 +- drivers/staging/vt6656/device.h | 1 - drivers/staging/vt6656/main_usb.c | 3 +-- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/drivers/staging/vt6656/card.c b/drivers/staging/vt6656/card.c index 34ca2a6..ddf7385 100644 --- a/drivers/staging/vt6656/card.c +++ b/drivers/staging/vt6656/card.c @@ -771,7 +771,7 @@ int vnt_radio_power_on(struct vnt_private *priv) { int ret = true; - if (priv->bHWRadioOff == true || priv->bRadioControlOff == true) + if (priv->bHWRadioOff == true) return false; priv->bRadioOff = false; diff --git a/drivers/staging/vt6656/device.h b/drivers/staging/vt6656/device.h index 757d500..358c620 100644 --- a/drivers/staging/vt6656/device.h +++ b/drivers/staging/vt6656/device.h @@ -368,7 +368,6 @@ struct vnt_private { int bShortSlotTime; int bBarkerPreambleMd; - int bRadioControlOff; int bRadioOff; /* Power save */ diff --git a/drivers/staging/vt6656/main_usb.c b/drivers/staging/vt6656/main_usb.c index ff4e18d..68367414 100644 --- a/drivers/staging/vt6656/main_usb.c +++ b/drivers/staging/vt6656/main_usb.c @@ -381,8 +381,7 @@ static int device_init_registers(struct vnt_private *priv) vnt_mac_reg_bits_on(priv, MAC_REG_GPIOCTL0, 0x01); - if ((priv->bHWRadioOff == true) || - (priv->bRadioControlOff == true)) { + if (priv->bHWRadioOff == true) { vnt_radio_power_off(priv); } else { vnt_radio_power_on(priv); -- 2.0.1 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html