rtl8192u: fix whitespace around ~ in r8192U_dm.c
This patch fixes the following checkpatch error: ERROR: space prohibited after that '~' Signed-off-by: Xenia Ragiadakou <burzalodowa@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4b150936ea
commit
33c2aa14a8
1 changed files with 2 additions and 2 deletions
|
@ -1736,7 +1736,7 @@ extern void dm_restore_dynamic_mechanism_state(struct net_device *dev)
|
||||||
ratr_value = reg_ratr;
|
ratr_value = reg_ratr;
|
||||||
if(priv->rf_type == RF_1T2R) // 1T2R, Spatial Stream 2 should be disabled
|
if(priv->rf_type == RF_1T2R) // 1T2R, Spatial Stream 2 should be disabled
|
||||||
{
|
{
|
||||||
ratr_value &=~ (RATE_ALL_OFDM_2SS);
|
ratr_value &= ~(RATE_ALL_OFDM_2SS);
|
||||||
//DbgPrint("HW_VAR_TATR_0 from 0x%x ==> 0x%x\n", ((pu4Byte)(val))[0], ratr_value);
|
//DbgPrint("HW_VAR_TATR_0 from 0x%x ==> 0x%x\n", ((pu4Byte)(val))[0], ratr_value);
|
||||||
}
|
}
|
||||||
//DbgPrint("set HW_VAR_TATR_0 = 0x%x\n", ratr_value);
|
//DbgPrint("set HW_VAR_TATR_0 = 0x%x\n", ratr_value);
|
||||||
|
@ -3057,7 +3057,7 @@ static void dm_rxpath_sel_byrssi(struct net_device *dev)
|
||||||
}
|
}
|
||||||
|
|
||||||
DM_RxPathSelTable.disabledRF = 0xf;
|
DM_RxPathSelTable.disabledRF = 0xf;
|
||||||
DM_RxPathSelTable.disabledRF &=~ (read_nic_byte(dev, 0xc04));
|
DM_RxPathSelTable.disabledRF &= ~(read_nic_byte(dev, 0xc04));
|
||||||
|
|
||||||
if(priv->ieee80211->mode == WIRELESS_MODE_B)
|
if(priv->ieee80211->mode == WIRELESS_MODE_B)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue