Commit 459b6785 authored by Maya Nakamura's avatar Maya Nakamura Committed by Greg Kroah-Hartman

staging: rtlwifi: Keep expressions on one line

Edit two statements to keep expressions on one line--one from Julia's
feedback.
Signed-off-by: default avatarMaya Nakamura <m.maya.nakamura@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ec5043bf
...@@ -159,9 +159,7 @@ void phydm_init_debug_setting(struct phy_dm_struct *dm) ...@@ -159,9 +159,7 @@ void phydm_init_debug_setting(struct phy_dm_struct *dm)
dm->debug_level = ODM_DBG_TRACE; dm->debug_level = ODM_DBG_TRACE;
dm->fw_debug_components = 0; dm->fw_debug_components = 0;
dm->debug_components = dm->debug_components = 0;
0;
dm->fw_buff_is_enpty = true; dm->fw_buff_is_enpty = true;
dm->pre_c2h_seq = 0; dm->pre_c2h_seq = 0;
......
...@@ -45,8 +45,8 @@ static u32 phydm_process_rssi_pwdb(struct phy_dm_struct *dm, ...@@ -45,8 +45,8 @@ static u32 phydm_process_rssi_pwdb(struct phy_dm_struct *dm,
u32 weighting = 0, undecorated_smoothed_pwdb; u32 weighting = 0, undecorated_smoothed_pwdb;
/* 2011.07.28 LukeLee: modified to prevent unstable CCK RSSI */ /* 2011.07.28 LukeLee: modified to prevent unstable CCK RSSI */
if (entry->rssi_stat.ofdm_pkt == if (entry->rssi_stat.ofdm_pkt == 64) {
64) { /* speed up when all packets are OFDM*/ /* speed up when all packets are OFDM */
undecorated_smoothed_pwdb = undecorated_smoothed_ofdm; undecorated_smoothed_pwdb = undecorated_smoothed_ofdm;
ODM_RT_TRACE(dm, ODM_COMP_RSSI_MONITOR, ODM_RT_TRACE(dm, ODM_COMP_RSSI_MONITOR,
"PWDB_0[%d] = (( %d ))\n", pktinfo->station_id, "PWDB_0[%d] = (( %d ))\n", pktinfo->station_id,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment