Home | History | Annotate | Download | only in pci

Lines Matching defs:rates

336 	/* Set supported HT rates. */
341 /* Set supported .11b and .11g rates. */
1061 uint32_t rates, basicrates;
1067 /* Get normal and basic rates mask. */
1068 rates = basicrates = 0;
1077 rates |= 1 << j;
1090 DPRINTF(("%s: mode=0x%x rates=0x%08x, basicrates=0x%08x\n",
1091 device_xname(sc->sc_dev), mode, rates, basicrates));
1095 /* Set rates mask for group addressed frames. */
1109 /* Set rates mask for unicast frames. */
1111 cmd.mask = htole32((mode << 28) | rates);
1123 if (rates & 0x0c)
1124 rtwn_write_4(sc, R92C_ARFR(0), htole32(rates & 0x0d));
1126 rtwn_write_4(sc, R92C_ARFR(0), htole32(rates & 0x0f));
1128 rtwn_write_4(sc, R92C_ARFR(0), htole32(rates & 0x0ff5));