Commit 1f3413dc authored by Yogesh Hegde's avatar Yogesh Hegde Committed by Greg Kroah-Hartman

staging: rtl8192e: Refactor tmp_ofdm_index variable assignment

Refactor tmp_ofdm_index variable assignment to avoid multiple
assignments which is not accepted by checkpatch.
Signed-off-by: default avatarYogesh Hegde <yogi.kernel@gmail.com>
Tested-by: default avatarPhilipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/af7bc22ec142c33cf7346c1ab13d192b55095d1e.1683730854.git.yogi.kernel@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 94c41266
......@@ -689,8 +689,8 @@ static void _rtl92e_dm_tx_power_tracking_cb_thermal(struct net_device *dev)
priv->thermal_meter[1] = ThermalMeterVal;
if (priv->thermal_meter[0] >= (u8)tmp_reg) {
tmp_ofdm_index = tmp_cck_20m_index = 6+(priv->thermal_meter[0] -
(u8)tmp_reg);
tmp_ofdm_index = 6 + (priv->thermal_meter[0] - (u8)tmp_reg);
tmp_cck_20m_index = tmp_ofdm_index;
tmp_cck_40m_index = tmp_cck_20m_index - 6;
if (tmp_ofdm_index >= OFDM_TABLE_LEN)
tmp_ofdm_index = OFDM_TABLE_LEN - 1;
......
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