/src/sys/dev/ic/ |
seeq8005.c | 1047 u_int txstatus; local in function:ea_txint 1051 DPRINTF(SEEQ_DEBUG_TX, ("txstatus=%02x %02x %02x %02x\n", 1053 txstatus = txhdr[3]; 1071 if (txstatus & SEEQ_TXSTAT_COLLISION) { 1083 (txstatus >> SEEQ_TXSTAT_COLLISIONS_SHIFT) 1098 } else if (txstatus & SEEQ_TXSTAT_COLLISION16) { 1099 printf("seeq_intr: col16 %x\n", txstatus); 1104 if (txstatus & SEEQ_PKTSTAT_DONE) {
|
smc83c170.c | 591 uint32_t intstat, rxstatus, txstatus; local in function:epic_intr 745 txstatus = txd->et_txstatus; 746 if (txstatus & ET_TXSTAT_OWNER) 762 if ((txstatus & ET_TXSTAT_PACKETTX) == 0) 766 if (TXSTAT_COLLISIONS(txstatus)) 768 TXSTAT_COLLISIONS(txstatus)); 769 if (txstatus & ET_TXSTAT_CARSENSELOST)
|
atw.c | 2816 uint32_t status, rxstatus, txstatus, linkstatus; local in function:atw_softintr 2870 txstatus = status & sc->sc_txint_mask; 2889 if (txstatus) { 2891 atw_txintr(sc, txstatus); 2893 if (txstatus & ATW_INTR_TLT) { 2899 if (txstatus & ATW_INTR_TRT) { 2908 if ((txstatus & ATW_INTR_TUF) &&
|
tulip.c | 1016 uint32_t status, rxstatus, txstatus, rndstatus = 0; local in function:tlp_intr 1059 txstatus = status & sc->sc_txint_mask; 1085 if (txstatus) { 1089 if (txstatus & STATUS_TJT) 1093 if (txstatus & STATUS_UNF) {
|
/src/sys/arch/mips/atheros/dev/ |
if_ae.c | 852 uint32_t status, rxstatus, txstatus; local in function:ae_intr 885 txstatus = status & sc->sc_txint_mask; 901 if (txstatus) { 905 if (txstatus & STATUS_TJT) 909 if (txstatus & STATUS_UNF) {
|
/src/sys/dev/isa/ |
if_iy.c | 1119 u_int txstatus, txstat2, txlen, txnext; local in function:iy_intr_tx 1127 txstatus = le16toh(bus_space_read_stream_2(iot, ioh, 1130 if ((txstatus & (TX_DONE | CMD_MASK)) != (TX_DONE | XMT_CMD)) 1149 txstatus, sbuf, txnext, txlen);
|