mirror of
https://github.com/torvalds/linux.git
synced 2024-12-12 22:23:55 +00:00
staging: rtl8188eu: add spaces around operators in odm_rtl8188e.c
Add spaces around '|', '>>' and '/' to follow kernel coding style. Reported by checkpatch. Signed-off-by: Michael Straube <straube.linux@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
9fd3ad9d8a
commit
0f80b1c9f4
@ -103,9 +103,11 @@ static void dm_fast_training_init(struct odm_dm_struct *dm_odm)
|
||||
|
||||
/* MAC Setting */
|
||||
value32 = phy_query_bb_reg(adapter, 0x4c, bMaskDWord);
|
||||
phy_set_bb_reg(adapter, 0x4c, bMaskDWord, value32|(BIT(23) | BIT(25)));
|
||||
phy_set_bb_reg(adapter, 0x4c, bMaskDWord,
|
||||
value32 | (BIT(23) | BIT(25)));
|
||||
value32 = phy_query_bb_reg(adapter, 0x7B4, bMaskDWord);
|
||||
phy_set_bb_reg(adapter, 0x7b4, bMaskDWord, value32|(BIT(16) | BIT(17)));
|
||||
phy_set_bb_reg(adapter, 0x7b4, bMaskDWord,
|
||||
value32 | (BIT(16) | BIT(17)));
|
||||
|
||||
/* Match MAC ADDR */
|
||||
phy_set_bb_reg(adapter, 0x7b4, 0xFFFF, 0);
|
||||
@ -250,9 +252,11 @@ static void rtl88eu_dm_hw_ant_div(struct odm_dm_struct *dm_odm)
|
||||
if (IS_STA_VALID(entry)) {
|
||||
/* 2 Calculate RSSI per Antenna */
|
||||
main_rssi = (dm_fat_tbl->MainAnt_Cnt[i] != 0) ?
|
||||
(dm_fat_tbl->MainAnt_Sum[i]/dm_fat_tbl->MainAnt_Cnt[i]) : 0;
|
||||
(dm_fat_tbl->MainAnt_Sum[i] /
|
||||
dm_fat_tbl->MainAnt_Cnt[i]) : 0;
|
||||
aux_rssi = (dm_fat_tbl->AuxAnt_Cnt[i] != 0) ?
|
||||
(dm_fat_tbl->AuxAnt_Sum[i]/dm_fat_tbl->AuxAnt_Cnt[i]) : 0;
|
||||
(dm_fat_tbl->AuxAnt_Sum[i] /
|
||||
dm_fat_tbl->AuxAnt_Cnt[i]) : 0;
|
||||
target_ant = (main_rssi >= aux_rssi) ? MAIN_ANT : AUX_ANT;
|
||||
/* 2 Select max_rssi for DIG */
|
||||
local_max_rssi = max(main_rssi, aux_rssi);
|
||||
|
Loading…
Reference in New Issue
Block a user