HomeSort by relevance Sort by last modified time
    Searched defs:tx_status (Results 1 - 13 of 13) sorted by null

  /external/syslinux/gpxe/src/drivers/net/ath5k/
ath5k_desc.c 253 struct ath5k_hw_tx_status *tx_status; local
256 tx_status = &desc->ud.ds_tx5210.tx_stat;
259 if ((tx_status->tx_status_1 & AR5K_DESC_TX_STATUS1_DONE) == 0)
265 ts->ts_tstamp = AR5K_REG_MS(tx_status->tx_status_0,
267 ts->ts_shortretry = AR5K_REG_MS(tx_status->tx_status_0,
269 ts->ts_longretry = AR5K_REG_MS(tx_status->tx_status_0,
272 ts->ts_seqnum = AR5K_REG_MS(tx_status->tx_status_1,
274 ts->ts_rssi = AR5K_REG_MS(tx_status->tx_status_1,
283 if (!(tx_status->tx_status_0 & AR5K_DESC_TX_STATUS0_FRAME_XMIT_OK)) {
284 if (tx_status->tx_status_0
305 struct ath5k_hw_tx_status *tx_status; local
    [all...]
  /external/syslinux/gpxe/src/drivers/net/
natsemi.c 502 unsigned int tx_status; local
522 tx_status = np->tx[np->tx_dirty].cmdsts;
524 DBG ("tx_dirty = %d tx_cur=%d tx_status=%#08x\n",
525 np->tx_dirty, np->tx_cur, tx_status);
527 if (tx_status & OWN)
530 if (! (tx_status & DescPktOK)) {
532 DBG ("Error transmitting packet, tx_status: %#08x\n",
533 tx_status);
smc9000.c 720 word tx_status; local
734 tx_status = inw( nic->ioaddr + DATA_1 );
736 if (0 == (tx_status & TS_SUCCESS)) {
737 DBG("SMC9000: TX FAIL STATUS: %hX \n", tx_status);
sis900.c 1127 volatile u32 tx_status;
1166 while (((tx_status=txd.cmdsts) & OWN) && (currticks() < to))
1171 (unsigned int) tx_status);
1174 if (tx_status & (ABORT | UNDERRUN | OWCOLL)) {
1177 (unsigned int) tx_status);
1111 volatile u32 tx_status; local
    [all...]
r8169.c 1616 uint32_t tx_status; local
    [all...]
mtd80x.c 522 u32 tx_status; local
555 tx_status = mtdx.tx_ring[0].status;
558 } else if( tx_status & (CSL | LC | EC | UDF | HF)){
560 (unsigned int) tx_status,
561 tx_status & EC ? "abort" : "",
562 tx_status & CSL ? "carrier" : "",
563 tx_status & LC ? "late" : "",
564 tx_status & UDF ? "fifo" : "",
565 tx_status & HF ? "heartbeat" : "" );
via-rhine.c 474 tx_status; member in struct:rhine_tx_desc
743 tp->tx_ring[i].tx_status.lw = 0;
    [all...]
  /external/syslinux/gpxe/src/drivers/net/e1000/
e1000.c 693 uint32_t tx_status; local
717 tx_status = tx_curr_desc->upper.data;
720 if ( ! ( tx_status & E1000_TXD_STAT_DD ) )
723 DBG ( "Sent packet. tx_head: %d tx_tail: %d tx_status: %#08x\n",
724 adapter->tx_head, adapter->tx_tail, tx_status );
726 if ( tx_status & ( E1000_TXD_STAT_EC | E1000_TXD_STAT_LC |
729 DBG ( "Error transmitting packet, tx_status: %#08x\n",
730 tx_status );
733 DBG ( "Success transmitting packet, tx_status: %#08x\n",
734 tx_status );
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/plat/hikey/
usb.c 643 void tx_status(const char *status) function
656 tx_status(status);
687 tx_status("OKAY");
    [all...]
  /external/wpa_supplicant_8/src/ap/
wpa_auth.h 157 int tx_status; member in struct:wpa_auth_config
  /bionic/libc/kernel/uapi/linux/
cec.h 37 __u8 tx_status; member in struct:cec_msg
  /external/kernel-headers/original/uapi/linux/
cec.h 78 * @tx_status: The message transmit status bits. Set by the driver.
95 __u8 tx_status; member in struct:cec_msg
190 if (msg->tx_status && !(msg->tx_status & CEC_TX_STATUS_OK))
194 if (!msg->tx_status && !msg->rx_status)
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver.h 4724 struct tx_status { struct in union:wpa_event_data
4731 } tx_status; member in union:wpa_event_data
    [all...]

Completed in 283 milliseconds