diff options
author | Alien Wesley <alienwesley51@gmail.com> | 2024-08-22 13:30:57 -0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-08-23 09:17:00 +0800 |
commit | 0c0b453c6e7b33225468f6b01a691c448e7656aa (patch) | |
tree | b5a04f7b5bcd5c85ba6921ac606b0ac0751997a0 /drivers/staging/rtl8192e | |
parent | 1eff40c209b1acc7d6bf58176d1e710f65b6a38d (diff) | |
download | lwn-0c0b453c6e7b33225468f6b01a691c448e7656aa.tar.gz lwn-0c0b453c6e7b33225468f6b01a691c448e7656aa.zip |
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: Alien Wesley <alienwesley51@gmail.com>
Link: https://lore.kernel.org/r/20240822163057.14114-1-alienwesley51@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8192e')
-rw-r--r-- | drivers/staging/rtl8192e/rtl8192e/rtl_dm.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/rtl8192e/rtl8192e/rtl_dm.c b/drivers/staging/rtl8192e/rtl8192e/rtl_dm.c index 0c7f38a4a7db..e9ca5a8768ad 100644 --- a/drivers/staging/rtl8192e/rtl8192e/rtl_dm.c +++ b/drivers/staging/rtl8192e/rtl8192e/rtl_dm.c @@ -1484,8 +1484,7 @@ static void _rtl92e_dm_rx_path_sel_byrssi(struct net_device *dev) rtl92e_set_bb_reg(dev, rOFDM1_TRxPathEnable, 0x1 << i, 0x1); - dm_rx_path_sel_table.rf_enable_rssi_th[i] - = 100; + dm_rx_path_sel_table.rf_enable_rssi_th[i] = 100; disabled_rf_cnt--; } } |