staging: vt6656: Remove unnecessary braces and tab spacing

This patch removes unnecessary braces around if-else single statement
blocks and unnecessary tab space aligning

Tool used is uncrustify.

Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Amitoj Kaur Chawla 2015-10-23 23:44:48 +05:30 committed by Greg Kroah-Hartman
parent 11d7e632e3
commit 7526a46884
1 changed files with 3 additions and 5 deletions

View File

@ -59,10 +59,9 @@ void vnt_enable_power_saving(struct vnt_private *priv, u16 listen_interval)
/* set period of power up before TBTT */ /* set period of power up before TBTT */
vnt_mac_write_word(priv, MAC_REG_PWBT, C_PWBT); vnt_mac_write_word(priv, MAC_REG_PWBT, C_PWBT);
if (priv->op_mode != NL80211_IFTYPE_ADHOC) { if (priv->op_mode != NL80211_IFTYPE_ADHOC)
/* set AID */ /* set AID */
vnt_mac_write_word(priv, MAC_REG_AIDATIM, aid); vnt_mac_write_word(priv, MAC_REG_AIDATIM, aid);
}
/* Warren:06-18-2004,the sequence must follow /* Warren:06-18-2004,the sequence must follow
* PSEN->AUTOSLEEP->GO2DOZE * PSEN->AUTOSLEEP->GO2DOZE
@ -85,11 +84,10 @@ void vnt_enable_power_saving(struct vnt_private *priv, u16 listen_interval)
/* first time set listen next beacon */ /* first time set listen next beacon */
vnt_mac_reg_bits_on(priv, MAC_REG_PSCTL, PSCTL_LNBCN); vnt_mac_reg_bits_on(priv, MAC_REG_PSCTL, PSCTL_LNBCN);
} else { } else
/* always listen beacon */ /* always listen beacon */
vnt_mac_reg_bits_on(priv, MAC_REG_PSCTL, PSCTL_ALBCN); vnt_mac_reg_bits_on(priv, MAC_REG_PSCTL, PSCTL_ALBCN);
}
dev_dbg(&priv->usb->dev, "PS:Power Saving Mode Enable...\n"); dev_dbg(&priv->usb->dev, "PS:Power Saving Mode Enable...\n");
} }
@ -109,7 +107,7 @@ void vnt_disable_power_saving(struct vnt_private *priv)
/* disable power saving hw function */ /* disable power saving hw function */
vnt_control_out(priv, MESSAGE_TYPE_DISABLE_PS, 0, vnt_control_out(priv, MESSAGE_TYPE_DISABLE_PS, 0,
0, 0, NULL); 0, 0, NULL);
/* clear AutoSleep */ /* clear AutoSleep */
vnt_mac_reg_bits_off(priv, MAC_REG_PSCFG, PSCFG_AUTOSLEEP); vnt_mac_reg_bits_off(priv, MAC_REG_PSCFG, PSCFG_AUTOSLEEP);