diff options
| author | Philipp Hortmann <philipp.g.hortmann@gmail.com> | 2023-01-18 20:59:21 +0100 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2023-01-19 14:24:21 +0100 |
| commit | 1032f497c5a1f42e3add5939605dae9b0f16f06a (patch) | |
| tree | 9e20a807302a2d6c4a5d792f2c46000302a0a8c1 /drivers/staging/rtl8192e | |
| parent | f48cc55bf37d2dcf5a9061ff6d644e56b45b458c (diff) | |
| download | linux-next-1032f497c5a1f42e3add5939605dae9b0f16f06a.tar.gz linux-next-1032f497c5a1f42e3add5939605dae9b0f16f06a.zip | |
staging: rtl8192e: Remove unused variable framesyncC34
framesyncC34 is written and then never evaluated. Remove resulting dead
code.
Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/e641717f1b89dd9bba99a0f14fc2c24996cb6bd7.1674071236.git.philipp.g.hortmann@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8192e')
| -rw-r--r-- | drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c | 1 | ||||
| -rw-r--r-- | drivers/staging/rtl8192e/rtl8192e/rtl_core.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c b/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c index ed27bdbb8fb9..aafe39e50bd9 100644 --- a/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c +++ b/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c @@ -580,7 +580,6 @@ void rtl92e_get_tx_power(struct net_device *dev) priv->def_initial_gain[3] = rtl92e_readb(dev, rOFDM0_XDAGCCore1); priv->framesync = rtl92e_readb(dev, rOFDM0_RxDetector3); - priv->framesyncC34 = rtl92e_readl(dev, rOFDM0_RxDetector2); } void rtl92e_set_tx_power(struct net_device *dev, u8 channel) diff --git a/drivers/staging/rtl8192e/rtl8192e/rtl_core.h b/drivers/staging/rtl8192e/rtl8192e/rtl_core.h index feb48ee35110..626a2bc48969 100644 --- a/drivers/staging/rtl8192e/rtl8192e/rtl_core.h +++ b/drivers/staging/rtl8192e/rtl8192e/rtl_core.h @@ -513,7 +513,6 @@ struct r8192_priv { u32 continue_diff_count; bool bswitch_fsync; u8 framesync; - u32 framesyncC34; u8 frame_sync_monitor; u32 reset_count; |
