/src/sys/dev/ic/ |
mb86950.c | 391 u_int8_t tstat; local in function:mb86950_watchdog 394 if ((tstat = bus_space_read_1(bst, bsh, DLCR_TX_STAT)) != 0) { 395 if (tstat & TX_CR_LOST) { 396 if ((tstat & (TX_COL | TX_16COL)) == 0) { 404 else if ((tstat & (TX_UNDERFLO | TX_BUS_WR_ERR)) != 0) { 672 u_int8_t tstat, rstat; local in function:mb86950_intr 675 tstat = bus_space_read_1(bst, bsh, DLCR_TX_STAT); 678 if (tstat == 0 && rstat == 0) return 0; 688 if (tstat != 0) { 690 mb86950_tint(sc, tstat); [all...] |
mb86960.c | 792 mb86960_tint(struct mb86960_softc *sc, uint8_t tstat) 803 if (tstat & FE_D0_COLL16) { 854 if (tstat & FE_D0_TXDONE) { 1079 uint8_t tstat, rstat; local in function:mb86960_intr 1093 tstat = bus_space_read_1(bst, bsh, FE_DLCR0) & FE_TMASK; 1095 if (tstat == 0 && rstat == 0) 1105 bus_space_write_1(bst, bsh, FE_DLCR0, tstat); 1112 if (tstat != 0) 1113 mb86960_tint(sc, tstat); 1144 if (rstat != 0 || tstat != 0 [all...] |
/src/usr.sbin/wsmoused/ |
wsmoused.c | 529 char *conffile, *modelist, *tstat; local in function:main 576 tstat = block_get_propval(conf, "ttystat", _PATH_TTYSTAT); 577 Mouse.m_statfd = open(tstat, O_RDONLY | O_NONBLOCK, 0); 579 log_err(EXIT_FAILURE, "cannot open %s", tstat);
|