tag | line | file | source code |
tx | 236 | drivers/char/scc.c | static void scc_key_trx (struct scc_channel *scc, char tx); |
tx | 1305 | drivers/char/scc.c | scc_key_trx(struct scc_channel *scc, char tx) |
tx | 1313 | drivers/char/scc.c | Outb(scc->ctrl + 4, scc->option | (tx? 0x80 : 0)); |
tx | 1315 | drivers/char/scc.c | time_const = (unsigned) (scc->clock / (scc->modem.speed * (tx? 2:64))) - 2; |
tx | 1319 | drivers/char/scc.c | if (tx) |
tx | 1340 | drivers/char/scc.c | if (tx) |
tx | 248 | drivers/char/stallion.c | stlrq_t tx; |
tx | 489 | drivers/char/stallion.c | static void stl_enablerxtx(stlport_t *portp, int rx, int tx); |
tx | 490 | drivers/char/stallion.c | static void stl_startrxtx(stlport_t *portp, int rx, int tx); |
tx | 571 | drivers/char/stallion.c | if (portp->tx.buf != (char *) NULL) |
tx | 572 | drivers/char/stallion.c | kfree_s(portp->tx.buf, STL_TXBUFSIZE); |
tx | 665 | drivers/char/stallion.c | if (portp->tx.buf == (char *) NULL) { |
tx | 666 | drivers/char/stallion.c | portp->tx.buf = (char *) stl_memalloc(STL_TXBUFSIZE); |
tx | 667 | drivers/char/stallion.c | if (portp->tx.buf == (char *) NULL) |
tx | 669 | drivers/char/stallion.c | portp->tx.head = portp->tx.buf; |
tx | 670 | drivers/char/stallion.c | portp->tx.tail = portp->tx.buf; |
tx | 842 | drivers/char/stallion.c | if (portp->tx.buf != (char *) NULL) { |
tx | 843 | drivers/char/stallion.c | kfree_s(portp->tx.buf, STL_TXBUFSIZE); |
tx | 844 | drivers/char/stallion.c | portp->tx.buf = (char *) NULL; |
tx | 845 | drivers/char/stallion.c | portp->tx.head = (char *) NULL; |
tx | 846 | drivers/char/stallion.c | portp->tx.tail = (char *) NULL; |
tx | 911 | drivers/char/stallion.c | if (portp->tx.buf == (char *) NULL) |
tx | 922 | drivers/char/stallion.c | head = portp->tx.head; |
tx | 923 | drivers/char/stallion.c | tail = portp->tx.tail; |
tx | 937 | drivers/char/stallion.c | head = portp->tx.head; |
tx | 938 | drivers/char/stallion.c | tail = portp->tx.tail; |
tx | 941 | drivers/char/stallion.c | stlen = STL_TXBUFSIZE - (head - portp->tx.buf); |
tx | 956 | drivers/char/stallion.c | if (head >= (portp->tx.buf + STL_TXBUFSIZE)) { |
tx | 957 | drivers/char/stallion.c | head = portp->tx.buf; |
tx | 961 | drivers/char/stallion.c | portp->tx.head = head; |
tx | 986 | drivers/char/stallion.c | if (portp->tx.buf == (char *) NULL) |
tx | 989 | drivers/char/stallion.c | head = portp->tx.head; |
tx | 990 | drivers/char/stallion.c | tail = portp->tx.tail; |
tx | 997 | drivers/char/stallion.c | if (head >= (portp->tx.buf + STL_TXBUFSIZE)) |
tx | 998 | drivers/char/stallion.c | head = portp->tx.buf; |
tx | 1000 | drivers/char/stallion.c | portp->tx.head = head; |
tx | 1024 | drivers/char/stallion.c | if (portp->tx.buf == (char *) NULL) |
tx | 1028 | drivers/char/stallion.c | if (tty->stopped || tty->hw_stopped || (portp->tx.head == portp->tx.tail)) |
tx | 1050 | drivers/char/stallion.c | if (portp->tx.buf == (char *) NULL) |
tx | 1053 | drivers/char/stallion.c | head = portp->tx.head; |
tx | 1054 | drivers/char/stallion.c | tail = portp->tx.tail; |
tx | 1084 | drivers/char/stallion.c | if (portp->tx.buf == (char *) NULL) |
tx | 1087 | drivers/char/stallion.c | head = portp->tx.head; |
tx | 1088 | drivers/char/stallion.c | tail = portp->tx.tail; |
tx | 1443 | drivers/char/stallion.c | if (portp->tx.buf != (char *) NULL) { |
tx | 1444 | drivers/char/stallion.c | kfree_s(portp->tx.buf, STL_TXBUFSIZE); |
tx | 1445 | drivers/char/stallion.c | portp->tx.buf = (char *) NULL; |
tx | 1446 | drivers/char/stallion.c | portp->tx.head = (char *) NULL; |
tx | 1447 | drivers/char/stallion.c | portp->tx.tail = (char *) NULL; |
tx | 1480 | drivers/char/stallion.c | portp->tx.tail = portp->tx.head; |
tx | 1575 | drivers/char/stallion.c | head = portp->tx.head; |
tx | 1576 | drivers/char/stallion.c | tail = portp->tx.tail; |
tx | 1595 | drivers/char/stallion.c | stlen = MIN(len, ((portp->tx.buf + STL_TXBUFSIZE) - tail)); |
tx | 1600 | drivers/char/stallion.c | if (tail >= (portp->tx.buf + STL_TXBUFSIZE)) |
tx | 1601 | drivers/char/stallion.c | tail = portp->tx.buf; |
tx | 1606 | drivers/char/stallion.c | portp->tx.tail = tail; |
tx | 2236 | drivers/char/stallion.c | static void stl_enablerxtx(stlport_t *portp, int rx, int tx) |
tx | 2242 | drivers/char/stallion.c | printk("stl_enablerxtx(portp=%x,rx=%d,tx=%d)\n", (int) portp, rx, tx); |
tx | 2246 | drivers/char/stallion.c | if (tx == 0) |
tx | 2248 | drivers/char/stallion.c | else if (tx > 0) |
tx | 2272 | drivers/char/stallion.c | static void stl_startrxtx(stlport_t *portp, int rx, int tx) |
tx | 2278 | drivers/char/stallion.c | printk("stl_startrxtx(portp=%x,rx=%d,tx=%d)\n", (int) portp, rx, tx); |
tx | 2283 | drivers/char/stallion.c | if (tx == 0) |
tx | 2285 | drivers/char/stallion.c | else if (tx == 1) |
tx | 2287 | drivers/char/stallion.c | else if (tx >= 2) |
tx | 2300 | drivers/char/stallion.c | if (tx > 0) |
tx | 1159 | drivers/net/wavelan.c | ac_tx_t tx; |
tx | 1168 | drivers/net/wavelan.c | nop_addr = tx_addr + sizeof(tx); |
tx | 1172 | drivers/net/wavelan.c | tx.tx_h.ac_status = 0; |
tx | 1173 | drivers/net/wavelan.c | tx.tx_h.ac_command = acmd_transmit | AC_CFLD_I; |
tx | 1174 | drivers/net/wavelan.c | tx.tx_h.ac_link = nop_addr; |
tx | 1175 | drivers/net/wavelan.c | tx.tx_tbd_offset = tbd_addr; |
tx | 1176 | drivers/net/wavelan.c | obram_write(ioaddr, tx_addr, (unsigned char *)&tx, sizeof(tx)); |
tx | 1289 | drivers/net/wavelan.c | ac_tx_t tx; |
tx | 1315 | drivers/net/wavelan.c | nop_addr = tx_addr + sizeof(tx); |
tx | 1322 | drivers/net/wavelan.c | tx.tx_h.ac_status = 0; |
tx | 1323 | drivers/net/wavelan.c | obram_write(ioaddr, toff(ac_tx_t, tx_addr, tx_h.ac_status), (unsigned char *)&tx.tx_h.ac_status, sizeof(tx.tx_h.ac_status)); |
tx | 1351 | drivers/net/wavelan.c | nop_addr = txpred + sizeof(tx); |