Commit 70b88f5b authored by Jes Sorensen's avatar Jes Sorensen Committed by Greg Kroah-Hartman

staging: rtl8723au: Eliminate write-once variable xmit_priv->vcs_setting

Signed-off-by: default avatarJes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0ceb7b15
...@@ -1295,7 +1295,7 @@ void rtw_update_protection23a(struct rtw_adapter *padapter, u8 *ie, uint ie_len) ...@@ -1295,7 +1295,7 @@ void rtw_update_protection23a(struct rtw_adapter *padapter, u8 *ie, uint ie_len)
uint protection; uint protection;
const u8 *p; const u8 *p;
switch (pxmitpriv->vcs_setting) { switch (pregistrypriv->vrtl_carrier_sense) {
case DISABLE_VCS: case DISABLE_VCS:
pxmitpriv->vcs = NONE_VCS; pxmitpriv->vcs = NONE_VCS;
break; break;
......
...@@ -295,7 +295,6 @@ struct xmit_priv { ...@@ -295,7 +295,6 @@ struct xmit_priv {
struct rtw_adapter *adapter; struct rtw_adapter *adapter;
u8 vcs_setting;
u8 vcs; u8 vcs;
u64 tx_bytes; u64 tx_bytes;
......
...@@ -387,7 +387,6 @@ static int rtw_init_default_value(struct rtw_adapter *padapter) ...@@ -387,7 +387,6 @@ static int rtw_init_default_value(struct rtw_adapter *padapter)
int ret = _SUCCESS; int ret = _SUCCESS;
/* xmit_priv */ /* xmit_priv */
pxmitpriv->vcs_setting = pregistrypriv->vrtl_carrier_sense;
pxmitpriv->vcs = pregistrypriv->vcs_type; pxmitpriv->vcs = pregistrypriv->vcs_type;
/* pxmitpriv->rts_thresh = pregistrypriv->rts_thresh; */ /* pxmitpriv->rts_thresh = pregistrypriv->rts_thresh; */
pxmitpriv->frag_len = pregistrypriv->frag_thresh; pxmitpriv->frag_len = pregistrypriv->frag_thresh;
......
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