提交 dc5cfd9b 编写于 作者: M Malcolm Priestley 提交者: Greg Kroah-Hartman

staging: vt6656: struct vnt_private remove unused variable bRadioControlOff

This variable is never set.
Signed-off-by: NMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 46fc601e
......@@ -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;
......
......@@ -368,7 +368,6 @@ struct vnt_private {
int bShortSlotTime;
int bBarkerPreambleMd;
int bRadioControlOff;
int bRadioOff;
/* Power save */
......
......@@ -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);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册