Commit 0c0b453c authored by Alien Wesley's avatar Alien Wesley Committed by Greg Kroah-Hartman

staging: rtl8192e: Fix Assignment operator '=' in rtl_dm.c:1488

Removed enter before operator '=' in rtl_dm.c:1488 in order to silence the
following checkpatch warning.

CHECK: Assignment operator '=' should be on the previous line
Signed-off-by: default avatarAlien Wesley <alienwesley51@gmail.com>
Link: https://lore.kernel.org/r/20240822163057.14114-1-alienwesley51@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1eff40c2
...@@ -1484,8 +1484,7 @@ static void _rtl92e_dm_rx_path_sel_byrssi(struct net_device *dev) ...@@ -1484,8 +1484,7 @@ static void _rtl92e_dm_rx_path_sel_byrssi(struct net_device *dev)
rtl92e_set_bb_reg(dev, rtl92e_set_bb_reg(dev,
rOFDM1_TRxPathEnable, rOFDM1_TRxPathEnable,
0x1 << i, 0x1); 0x1 << i, 0x1);
dm_rx_path_sel_table.rf_enable_rssi_th[i] dm_rx_path_sel_table.rf_enable_rssi_th[i] = 100;
= 100;
disabled_rf_cnt--; disabled_rf_cnt--;
} }
} }
......
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