HomeSort by: relevance | last modified time | path
    Searched defs:txq_head (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/arch/ews4800mips/dev/
ewskbd.c 108 u_int txq_head; member in struct:ewskbd_devconfig
235 sc->sc_dc->txq_head = 0;
345 if (dc->txq_head != dc->txq_tail && (dc->state & TX_READY)) {
351 zs_write_data(cs, dc->txq[dc->txq_head]);
354 dc->txq_head = EWSKBD_NEXTTXQ(dc->txq_head);
  /src/sys/arch/sgimips/dev/
zs_kbd.c 77 u_int txq_head; member in struct:zskbd_devconfig
222 sc->sc_dc->txq_head = 0;
307 if (dc->txq_head != dc->txq_tail && (dc->state & TX_READY)) {
313 zs_write_data(cs, dc->txq[dc->txq_head]);
316 dc->txq_head = (dc->txq_head + 1) & ~ZSKBD_TXQ_LEN;

Completed in 12 milliseconds