Home
last modified time | relevance | path

Searched refs:rx_bytes (Results 1 – 6 of 6) sorted by relevance

/rk3399_rockchip-uboot/drivers/spi/
H A Datcspi200_spi.c194 unsigned int event, rx_bytes; in __atcspi200_spi_xfer() local
258 rx_bytes = CHUNK_SIZE; in __atcspi200_spi_xfer()
260 rx_bytes = num_bytes; in __atcspi200_spi_xfer()
264 if (__nspi_espi_rx(ns, din, rx_bytes) == rx_bytes) { in __atcspi200_spi_xfer()
266 din = (unsigned char *)din + rx_bytes; in __atcspi200_spi_xfer()
H A Dfsl_espi.c250 unsigned int event, rx_bytes; in spi_xfer() local
334 rx_bytes = 4; in spi_xfer()
336 rx_bytes = num_bytes; in spi_xfer()
339 if (fsl_espi_rx(fsl, din, rx_bytes) in spi_xfer()
340 == rx_bytes) { in spi_xfer()
344 + rx_bytes; in spi_xfer()
/rk3399_rockchip-uboot/include/linux/
H A Dnetdevice.h33 unsigned long rx_bytes; /* total bytes received */ member
/rk3399_rockchip-uboot/drivers/net/
H A Dmvneta.c1621 int rx_bytes = 0; in mvneta_recv() local
1647 rx_bytes = rx_desc->data_size - 6; in mvneta_recv()
1660 return rx_bytes; in mvneta_recv()
H A Dmvpp2.c952 u64 rx_bytes; member
5192 int pool, rx_bytes, err; in mvpp2_recv() local
5209 rx_bytes = mvpp2_rxdesc_size_get(port, rx_desc); in mvpp2_recv()
5210 rx_bytes -= MVPP2_MH_SIZE; in mvpp2_recv()
5242 if (rx_bytes <= 0) in mvpp2_recv()
5251 return rx_bytes; in mvpp2_recv()
/rk3399_rockchip-uboot/drivers/usb/gadget/
H A Dether.c1584 dev->stats.rx_bytes += req->length; in rx_complete()