View | Details | Raw Unified | Return to bug 802
Collapse All | Expand All

(-)a/src/devices/wifi/minstrel-wifi-manager.cc (-2 / +2 lines)
 Lines 486-492    Link Here 
486
bool 
486
bool 
487
MinstrelWifiManager::IsLowLatency (void) const
487
MinstrelWifiManager::IsLowLatency (void) const
488
{
488
{
489
  return false;
489
  return true;
490
}
490
}
491
uint32_t 
491
uint32_t 
492
MinstrelWifiManager::GetNextSample (MinstrelWifiRemoteStation *station)
492
MinstrelWifiManager::GetNextSample (MinstrelWifiRemoteStation *station)
 Lines 782-788    Link Here 
782
            {
782
            {
783
              newIndex = (newIndex + 1)%GetNSupported (station);
783
              newIndex = (newIndex + 1)%GetNSupported (station);
784
            }
784
            }
785
          station->m_sampleTable[newIndex][col] = i+1;
785
          station->m_sampleTable[newIndex][col] = i;
786
786
787
        }
787
        }
788
    }
788
    }

Return to bug 802