Commit 863108d5 authored by John Whitmore's avatar John Whitmore Committed by Greg Kroah-Hartman

staging:rtl8192u: Remove member variable Enable - Style

The structure dynamic_rx_path_sel defines a member variable 'Enable'
which is initialised and later tested. The variable is however never
changed to the test is redundant and the member variable is then never
used.

The member variable, initialisation and test have all been removed.

This is a coding style change which should not impact runtime code
execution.
Signed-off-by: default avatarJohn Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 916501c8
...@@ -2376,8 +2376,6 @@ void dm_rf_pathcheck_workitemcallback(struct work_struct *work) ...@@ -2376,8 +2376,6 @@ void dm_rf_pathcheck_workitemcallback(struct work_struct *work)
else else
priv->brfpath_rxenable[i] = false; priv->brfpath_rxenable[i] = false;
} }
if (!DM_RxPathSelTable.Enable)
return;
dm_rxpath_sel_byrssi(dev); dm_rxpath_sel_byrssi(dev);
} /* DM_RFPathCheckWorkItemCallBack */ } /* DM_RFPathCheckWorkItemCallBack */
...@@ -2387,7 +2385,6 @@ static void dm_init_rxpath_selection(struct net_device *dev) ...@@ -2387,7 +2385,6 @@ static void dm_init_rxpath_selection(struct net_device *dev)
u8 i; u8 i;
struct r8192_priv *priv = ieee80211_priv(dev); struct r8192_priv *priv = ieee80211_priv(dev);
DM_RxPathSelTable.Enable = 1; /* default enabled */
DM_RxPathSelTable.SS_TH_low = RxPathSelection_SS_TH_low; DM_RxPathSelTable.SS_TH_low = RxPathSelection_SS_TH_low;
DM_RxPathSelTable.diff_TH = RxPathSelection_diff_TH; DM_RxPathSelTable.diff_TH = RxPathSelection_diff_TH;
if (priv->CustomerID == RT_CID_819x_Netcore) if (priv->CustomerID == RT_CID_819x_Netcore)
......
...@@ -129,7 +129,6 @@ enum cck_rx_path_method { ...@@ -129,7 +129,6 @@ enum cck_rx_path_method {
}; };
struct dynamic_rx_path_sel { struct dynamic_rx_path_sel {
u8 Enable;
enum cck_rx_path_method cck_method; enum cck_rx_path_method cck_method;
u8 cck_Rx_path; u8 cck_Rx_path;
......
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