Lines Matching refs:wme
2425 struct wpi_wme_setup wme;
2428 /* don't override default WME values if WME is not actually enabled */
2432 wme.flags = 0;
2435 wme.ac[ac].aifsn = wmep->wmep_aifsn;
2436 wme.ac[ac].cwmin = WPI_EXP2(wmep->wmep_logcwmin);
2437 wme.ac[ac].cwmax = WPI_EXP2(wmep->wmep_logcwmax);
2438 wme.ac[ac].txop = WPI_USEC(wmep->wmep_txopLimit);
2440 DPRINTF(("setting WME for queue %d aifsn=%d cwmin=%d cwmax=%d "
2441 "txop=%d\n", ac, wme.ac[ac].aifsn, wme.ac[ac].cwmin,
2442 wme.ac[ac].cwmax, wme.ac[ac].txop));
2445 return wpi_cmd(sc, WPI_CMD_SET_WME, &wme, sizeof wme, 1);