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

staging: rtl8723au: Remove some CONFIG_8723AU_BT_COEXIST clutter

Signed-off-by: default avatarJes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1af4072b
...@@ -990,14 +990,12 @@ static void traffic_status_watchdog(struct rtw_adapter *padapter) ...@@ -990,14 +990,12 @@ static void traffic_status_watchdog(struct rtw_adapter *padapter)
bHigherBusyTxTraffic = true; bHigherBusyTxTraffic = true;
} }
#ifdef CONFIG_8723AU_BT_COEXIST if (!rtl8723a_BT_coexist(padapter) ||
if (rtl8723a_BT_using_antenna_1(padapter) == false) !rtl8723a_BT_using_antenna_1(padapter)) {
#endif
{
/* check traffic for powersaving. */ /* check traffic for powersaving. */
if (((pmlmepriv->LinkDetectInfo.NumRxUnicastOkInPeriod + if (((pmlmepriv->LinkDetectInfo.NumRxUnicastOkInPeriod +
pmlmepriv->LinkDetectInfo.NumTxOkInPeriod) > 8) || pmlmepriv->LinkDetectInfo.NumTxOkInPeriod) > 8) ||
(pmlmepriv->LinkDetectInfo.NumRxUnicastOkInPeriod > 2)) pmlmepriv->LinkDetectInfo.NumRxUnicastOkInPeriod >2)
bEnterPS = false; bEnterPS = false;
else else
bEnterPS = true; bEnterPS = true;
......
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