Searched refs:txcnt (Results 1 - 3 of 3) sorted by relevance

/freebsd-12-stable/sys/arm/freescale/vybrid/
H A Dvf_spi.c211 uint32_t txcnt; local
214 txcnt = 0;
217 txcnt++;
223 if (i == (bufsz - 1) || txcnt == SPI_FIFO_SIZE)
227 if (i == (bufsz - 1) || txcnt == SPI_FIFO_SIZE) {
228 txcnt = 0;
/freebsd-12-stable/sys/arm/allwinner/
H A Daw_spi.c154 uint32_t txcnt; member in struct:aw_spi_softc
386 uint32_t reg, txcnt; local
389 if (sc->txcnt == sc->txlen)
394 txcnt = reg >> AW_SPI_FSR_TF_CNT_SHIFT;
396 for (i = 0; i < (AW_SPI_FIFO_SIZE - txcnt); i++) {
397 AW_SPI_WRITE_1(sc, AW_SPI_TXD, sc->txbuf[sc->txcnt++]);
398 if (sc->txcnt == sc->txlen)
444 if (sc->txcnt == sc->txlen)
472 sc->txcnt = 0;
/freebsd-12-stable/sys/net80211/
H A Dieee80211_amrr.c255 KASSERT(is_enough(amn), ("txcnt %d", amn->amn_txcnt));
268 "AMRR: current rate %d, txcnt=%d, retrycnt=%d",
291 "AMRR increasing rate %d (txcnt=%d retrycnt=%d)",
314 "AMRR decreasing rate %d (txcnt=%d retrycnt=%d)",
406 int txcnt, success, retrycnt; local
411 txcnt = stats->nframes;
417 amn->amn_txcnt += txcnt;
509 sbuf_printf(s, "txcnt: %u\n", amn->amn_txcnt);

Completed in 200 milliseconds