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

  /external/u-boot/drivers/net/
ep93xx_eth.h 47 struct rx_status { struct
52 #define RX_STATUS_RWE(rx_status) ((rx_status->word1 >> 30) & 0x01)
53 #define RX_STATUS_RFP(rx_status) ((rx_status->word1 >> 31) & 0x01)
54 #define RX_STATUS_FRAME_LEN(rx_status) (rx_status->word2 & 0xFFFF)
107 struct rx_status *base;
108 volatile struct rx_status *current;
109 struct rx_status *end
    [all...]
sunxi_emac.c 170 u16 rx_status; member in struct:emac_rxhdr
413 int rx_status; local
453 rx_status = rxhdr.rx_status;
461 /* rx_status is identical to RSR register. */
462 if (0 & rx_status & (EMAC_CRCERR | EMAC_LENERR)) {
464 if (rx_status & EMAC_CRCERR)
466 if (rx_status & EMAC_LENERR)
dm9000x.c 96 void (*rx_status)(u16 *RxStatus, u16 *RxLen); member in struct:board_info
303 db->rx_status = dm9000_rx_status_16bit;
309 db->rx_status = dm9000_rx_status_32bit;
315 db->rx_status = dm9000_rx_status_8bit;
322 db->rx_status = dm9000_rx_status_8bit;
495 (db->rx_status)(&RxStatus, &RxLen);
rtl8139.c 470 unsigned int rx_size, rx_status; local
487 rx_status = le32_to_cpu(*(unsigned int *)(rx_ring + ring_offs));
488 rx_size = rx_status >> 16;
489 rx_status &= 0xffff;
491 if ((rx_status & (RxBadSymbol|RxRunt|RxTooLong|RxCRCErr|RxBadAlign)) ||
493 printf("rx error %hX\n", rx_status);
natsemi.c 827 u32 rx_status = le32_to_cpu(rxd[cur_rx].cmdsts); local
829 if (!(rx_status & (u32) DescOwn))
834 cur_rx, rx_status);
836 length = (rx_status & DSIZE) - CRC_SIZE;
838 if ((rx_status & (DescMore | DescPktOK | DescRxLong)) != DescPktOK) {
841 rx_status);
ns8382x.c 800 vu_long rx_status = le32_to_cpu(rxd[cur_rx].cmdsts); local
802 if (!(rx_status & (u32) DescOwn))
806 cur_rx, rx_status);
808 length = (rx_status & DSIZE) - CRC_SIZE;
810 if ((rx_status & (DescMore | DescPktOK | DescRxLong)) != DescPktOK) {
813 rx_status);
ep93xx_eth.c 220 writel(sizeof(struct rx_status) * NUMRXDESC, &mac->rxstsq.blen);
248 (sizeof(struct rx_status) * NUMRXDESC));
340 sizeof(struct rx_status));
483 sizeof(struct rx_status));
mvneta.c 1646 u32 rx_status; local
    [all...]
mvpp2.c 5191 u32 bm, rx_status; local
    [all...]
  /external/kernel-headers/original/uapi/linux/
cec.h 49 * @rx_status: The message receive status bits. Set by the driver.
66 __u8 rx_status; member in struct:cec_msg
148 /* cec_msg tx/rx_status field */
167 if (msg->rx_status && !(msg->rx_status & CEC_RX_STATUS_OK))
169 if (!msg->tx_status && !msg->rx_status)
171 return !(msg->rx_status & CEC_RX_STATUS_FEATURE_ABORT);
    [all...]
  /external/u-boot/drivers/net/pfe_eth/
pfe_cmd.c 420 u32 rx_status; local
429 rx_status = readl(HIF_RX_STATUS);
430 if (rx_status & BDP_CSR_RX_DMA_ACTV)
  /external/linux-kselftest/tools/testing/selftests/bpf/
test_sockmap.c 588 int rx_status, tx_status; local
671 assert(waitpid(rxpid, &rx_status, 0) == rxpid);
673 if (WIFEXITED(rx_status)) {
674 err = WEXITSTATUS(rx_status);
    [all...]
  /bionic/libc/kernel/uapi/linux/
cec.h 33 __u8 rx_status; member in struct:cec_msg

Completed in 540 milliseconds