Home
last modified time | relevance | path

Searched refs:tx_len (Results 1 – 57 of 57) sorted by relevance

/linux-4.4.14/drivers/net/wireless/ath/ath6kl/
Dbmi.c175 u32 len_remain, tx_len; in ath6kl_bmi_write() local
210 tx_len = len_remain; in ath6kl_bmi_write()
212 tx_len = (ar->bmi.max_data_size - header); in ath6kl_bmi_write()
220 memcpy(&(ar->bmi.cmd_buf[offset]), &tx_len, sizeof(tx_len)); in ath6kl_bmi_write()
221 offset += sizeof(tx_len); in ath6kl_bmi_write()
222 memcpy(&(ar->bmi.cmd_buf[offset]), src, tx_len); in ath6kl_bmi_write()
223 offset += tx_len; in ath6kl_bmi_write()
231 len_remain -= tx_len; addr += tx_len; in ath6kl_bmi_write()
408 u32 len_remain, tx_len; in ath6kl_bmi_lz_data() local
429 tx_len = (len_remain < (ar->bmi.max_data_size - header)) ? in ath6kl_bmi_lz_data()
[all …]
/linux-4.4.14/drivers/input/touchscreen/
Dwdt87xx_i2c.c282 size_t tx_len = 0; in wdt87xx_get_feature() local
290 tx_buf[tx_len++] = 0x22; in wdt87xx_get_feature()
291 tx_buf[tx_len++] = 0x00; in wdt87xx_get_feature()
293 tx_buf[tx_len++] = 0x30; in wdt87xx_get_feature()
294 tx_buf[tx_len++] = 0x02; in wdt87xx_get_feature()
295 tx_buf[tx_len++] = buf[CMD_REPORT_ID_OFFSET]; in wdt87xx_get_feature()
297 tx_buf[tx_len++] = 0x30 | buf[CMD_REPORT_ID_OFFSET]; in wdt87xx_get_feature()
298 tx_buf[tx_len++] = 0x02; in wdt87xx_get_feature()
300 tx_buf[tx_len++] = 0x23; in wdt87xx_get_feature()
301 tx_buf[tx_len++] = 0x00; in wdt87xx_get_feature()
[all …]
/linux-4.4.14/drivers/spi/
Dspi-bcm2835aux.c105 int tx_len; member
155 count = min(bs->tx_len, 3); in bcm2835aux_wr_fifo()
166 bs->tx_len -= count; in bcm2835aux_wr_fifo()
170 if (bs->tx_len) in bcm2835aux_wr_fifo()
199 while (bs->tx_len && in bcm2835aux_spi_interrupt()
251 while ((bs->tx_len) && in bcm2835aux_spi_transfer_one_irq()
283 if ((bs->tx_len) && (!(stat & BCM2835_AUX_SPI_STAT_TX_FULL))) { in bcm2835aux_spi_transfer_one_poll()
303 bs->tx_len, bs->rx_len); in bcm2835aux_spi_transfer_one_poll()
365 bs->tx_len = tfr->len; in bcm2835aux_spi_transfer_one()
Dspi-xlp.c102 int tx_len; /* tx xfer length */ member
216 while (xspi->tx_len && (txfifo_cnt < XLP_SPI_FIFO_SIZE)) { in xlp_spi_fill_txfifo()
219 nbytes = min(xspi->tx_len, 4); in xlp_spi_fill_txfifo()
224 xspi->tx_len -= nbytes; in xlp_spi_fill_txfifo()
241 if (xspi->tx_len) in xlp_spi_interrupt()
286 xs->tx_len = (xs->tx_buf == NULL) ? 0 : xfer_len; in xlp_spi_xfer_block()
291 if (xs->tx_len) in xlp_spi_xfer_block()
301 if (xs->tx_len) in xlp_spi_xfer_block()
Dspi-efm32.c87 unsigned tx_len, rx_len; member
157 ddata->tx_len--; in efm32_spi_tx_u8()
177 while (ddata->tx_len && in efm32_spi_filltx()
178 ddata->tx_len + 2 > ddata->rx_len && in efm32_spi_filltx()
196 ddata->tx_len = ddata->rx_len = in efm32_spi_txrx_bufs()
211 ret = t->len - max(ddata->tx_len, ddata->rx_len); in efm32_spi_txrx_bufs()
258 __func__, ddata->tx_len, ddata->rx_len, in efm32_spi_txirq()
267 __func__, ddata->tx_len, ddata->rx_len); in efm32_spi_txirq()
269 if (!ddata->tx_len) { in efm32_spi_txirq()
Dspi-mpc512x-psc.c158 size_t tx_len = t->len; in mpc512x_psc_spi_transfer_rxtx() local
166 while (rx_len || tx_len) { in mpc512x_psc_spi_transfer_rxtx()
178 txcount = min(fifosz, tx_len); in mpc512x_psc_spi_transfer_rxtx()
187 if (tx_len == EOFBYTE && t->cs_change) in mpc512x_psc_spi_transfer_rxtx()
191 tx_len--; in mpc512x_psc_spi_transfer_rxtx()
235 if (tx_len) in mpc512x_psc_spi_transfer_rxtx()
268 if (!tx_len && rx_len && !rxtries) { in mpc512x_psc_spi_transfer_rxtx()
284 if (!tx_len && !rx_len) { in mpc512x_psc_spi_transfer_rxtx()
Dspi-sun6i.c163 unsigned int tx_len = 0; in sun6i_spi_transfer_one() local
254 tx_len = tfr->len; in sun6i_spi_transfer_one()
258 sun6i_spi_write(sspi, SUN6I_XMIT_CNT_REG, SUN6I_XMIT_CNT(tx_len)); in sun6i_spi_transfer_one()
260 SUN6I_BURST_CTL_CNT_STC(tx_len)); in sun6i_spi_transfer_one()
Dspi-bcm2835.c89 int tx_len; member
121 while ((bs->tx_len) && in bcm2835_wr_fifo()
125 bs->tx_len--; in bcm2835_wr_fifo()
515 bs->tx_len, bs->rx_len); in bcm2835_spi_transfer_one_poll()
573 bs->tx_len = tfr->len; in bcm2835_spi_transfer_one()
Dspi-dln2.c430 unsigned tx_len; in dln2_spi_write_one() local
443 tx_len = sizeof(*tx) + data_len - DLN2_SPI_MAX_XFER_SIZE; in dln2_spi_write_one()
444 return dln2_transfer_tx(dln2->pdev, DLN2_SPI_WRITE, tx, tx_len); in dln2_spi_write_one()
505 unsigned tx_len, rx_len; in dln2_spi_read_write_one() local
527 tx_len = sizeof(*tx) + data_len - DLN2_SPI_MAX_XFER_SIZE; in dln2_spi_read_write_one()
530 ret = dln2_transfer(dln2->pdev, DLN2_SPI_READ_WRITE, tx, tx_len, in dln2_spi_read_write_one()
Dspi-sun4i.c173 unsigned int tx_len = 0; in sun4i_spi_transfer_one() local
266 tx_len = tfr->len; in sun4i_spi_transfer_one()
270 sun4i_spi_write(sspi, SUN4I_XMIT_CNT_REG, SUN4I_XMIT_CNT(tx_len)); in sun4i_spi_transfer_one()
/linux-4.4.14/drivers/net/wireless/cw1200/
Dbh.c357 size_t tx_len; in cw1200_bh_tx_helper() local
376 ret = wsm_get_tx(priv, &data, &tx_len, tx_burst); in cw1200_bh_tx_helper()
385 BUG_ON(tx_len < sizeof(*wsm)); in cw1200_bh_tx_helper()
386 BUG_ON(__le16_to_cpu(wsm->len) != tx_len); in cw1200_bh_tx_helper()
390 tx_len = priv->hwbus_ops->align_size( in cw1200_bh_tx_helper()
391 priv->hwbus_priv, tx_len); in cw1200_bh_tx_helper()
394 if (WARN_ON_ONCE(tx_len > EFFECTIVE_BUF_SIZE)) in cw1200_bh_tx_helper()
395 pr_debug("Write aligned len: %zu\n", tx_len); in cw1200_bh_tx_helper()
400 if (WARN_ON(cw1200_data_write(priv, data, tx_len))) { in cw1200_bh_tx_helper()
401 pr_err("tx blew up, len %zu\n", tx_len); in cw1200_bh_tx_helper()
Dwsm.c1666 size_t *tx_len, int *burst) in wsm_get_tx() argument
1684 *tx_len = priv->wsm_cmd.len; in wsm_get_tx()
1732 *tx_len = __le16_to_cpu(wsm->hdr.len); in wsm_get_tx()
1760 0x0004, *tx_len, *data, in wsm_get_tx()
Dwsm.h1846 size_t *tx_len, int *burst);
/linux-4.4.14/drivers/staging/rtl8192e/rtl8192e/
Drtl_eeprom.c50 static u16 _rtl92e_eeprom_xfer(struct net_device *dev, u16 data, int tx_len) in _rtl92e_eeprom_xfer() argument
58 while (tx_len--) { in _rtl92e_eeprom_xfer()
60 (data >> tx_len) & 0x1); in _rtl92e_eeprom_xfer()
/linux-4.4.14/drivers/gpu/drm/
Ddrm_mipi_dsi.c350 packet->header[1] = (msg->tx_len >> 0) & 0xff; in mipi_dsi_create_packet()
351 packet->header[2] = (msg->tx_len >> 8) & 0xff; in mipi_dsi_create_packet()
353 packet->payload_length = msg->tx_len; in mipi_dsi_create_packet()
358 packet->header[1] = (msg->tx_len > 0) ? tx[0] : 0; in mipi_dsi_create_packet()
359 packet->header[2] = (msg->tx_len > 1) ? tx[1] : 0; in mipi_dsi_create_packet()
384 .tx_len = sizeof(tx), in mipi_dsi_set_maximum_return_packet_size()
410 .tx_len = size in mipi_dsi_generic_write()
454 .tx_len = num_params, in mipi_dsi_generic_read()
499 .tx_len = len in mipi_dsi_dcs_write_buffer()
583 .tx_len = 1, in mipi_dsi_dcs_read()
/linux-4.4.14/drivers/leds/
Dleds-ipaq-micro.c41 .tx_len = 4, in micro_leds_brightness_set()
78 .tx_len = 4, in micro_leds_blink_set()
/linux-4.4.14/drivers/media/dvb-frontends/
Dsp8870.c104 int tx_len; in sp8870_firmware_upload() local
124tx_len = (fw_pos <= SP8870_FIRMWARE_SIZE + SP8870_FIRMWARE_OFFSET - 252) ? 252 : SP8870_FIRMWARE_S… in sp8870_firmware_upload()
128 memcpy(&tx_buf[2], fw_buf + fw_pos, tx_len); in sp8870_firmware_upload()
132 msg.len = tx_len + 2; in sp8870_firmware_upload()
138 fw_pos += tx_len; in sp8870_firmware_upload()
/linux-4.4.14/drivers/gpu/drm/exynos/
Dexynos_drm_dsi.c236 u16 tx_len; member
950 u16 length = xfer->tx_len - xfer->tx_done; in exynos_dsi_send_to_fifo()
955 xfer, xfer->tx_len, xfer->tx_done, xfer->rx_len, xfer->rx_done); in exynos_dsi_send_to_fifo()
1113 if (xfer->tx_len && xfer->tx_done == xfer->tx_len) in exynos_dsi_transfer_start()
1119 if (xfer->tx_len || xfer->rx_len) in exynos_dsi_transfer_start()
1156 xfer, xfer->tx_len, xfer->tx_done, xfer->rx_len, xfer->rx_done); in exynos_dsi_transfer_finish()
1158 if (xfer->tx_done != xfer->tx_len) in exynos_dsi_transfer_finish()
1231 xfer->tx_len, xfer->tx_payload); in exynos_dsi_transfer()
1427 if (msg->tx_len == 0) in exynos_dsi_host_transfer()
1435 if (msg->tx_len > 2) in exynos_dsi_host_transfer()
[all …]
/linux-4.4.14/drivers/net/can/spi/
Dmcp251x.c257 int tx_len; member
289 if (priv->tx_skb || priv->tx_len) in mcp251x_clean()
293 if (priv->tx_len) in mcp251x_clean()
296 priv->tx_len = 0; in mcp251x_clean()
521 if (priv->tx_skb || priv->tx_len) { in mcp251x_hard_start_xmit()
760 priv->tx_len = 1 + frame->can_dlc; in mcp251x_tx_work_handler()
921 net->stats.tx_bytes += priv->tx_len - 1; in mcp251x_can_ist()
923 if (priv->tx_len) { in mcp251x_can_ist()
925 priv->tx_len = 0; in mcp251x_can_ist()
953 priv->tx_len = 0; in mcp251x_open()
/linux-4.4.14/drivers/bluetooth/
Dbtmrvl_sdio.c388 u32 tx_len; in btmrvl_sdio_download_helper() local
418 tx_len = (FIRMWARE_TRANSFER_NBLOCK * SDIO_BLOCK_SIZE) in btmrvl_sdio_download_helper()
435 if (helperlen - hlprblknow < tx_len) in btmrvl_sdio_download_helper()
436 tx_len = helperlen - hlprblknow; in btmrvl_sdio_download_helper()
439 helperbuf[0] = ((tx_len & 0x000000ff) >> 0); in btmrvl_sdio_download_helper()
440 helperbuf[1] = ((tx_len & 0x0000ff00) >> 8); in btmrvl_sdio_download_helper()
441 helperbuf[2] = ((tx_len & 0x00ff0000) >> 16); in btmrvl_sdio_download_helper()
442 helperbuf[3] = ((tx_len & 0xff000000) >> 24); in btmrvl_sdio_download_helper()
445 tx_len); in btmrvl_sdio_download_helper()
456 hlprblknow += tx_len; in btmrvl_sdio_download_helper()
/linux-4.4.14/drivers/firmware/
Darm_scpi.c141 unsigned int tx_len; member
311 memcpy_toio(mem->payload, t->tx_buf, t->tx_len); in scpi_tx_prepare()
345 static int scpi_send_message(u8 cmd, void *tx_buf, unsigned int tx_len, in scpi_send_message() argument
361 msg->cmd = PACK_SCPI_CMD(cmd, tx_len); in scpi_send_message()
363 msg->tx_len = tx_len; in scpi_send_message()
/linux-4.4.14/drivers/mfd/
Dipaq-micro.c45 checksum = ((msg->id & 0x0f) << 4) | (msg->tx_len & 0x0f); in ipaq_micro_trigger_tx()
48 for (i = 0; i < msg->tx_len; i++) { in ipaq_micro_trigger_tx()
69 dev_dbg(micro->dev, "TX msg: %02x, %d bytes\n", msg->id, msg->tx_len); in ipaq_micro_tx_msg()
224 msg.tx_len = 2; in ipaq_micro_eeprom_read()
/linux-4.4.14/drivers/video/backlight/
Dipaq_micro_bl.c24 .tx_len = 3, in micro_bl_update_status()
/linux-4.4.14/include/linux/mfd/
Dipaq-micro.h84 u8 tx_len; member
/linux-4.4.14/drivers/net/irda/
Dw83977af_ir.h172 int tx_len; /* Number of frames in tx_buff */ member
Dsmsc-ircc2.c167 int tx_len; /* Number of frames in tx_buff */ member
/linux-4.4.14/drivers/net/hamradio/
Dyam.c138 int tx_len; member
684 yp->tx_len = skb->len - 1; /* strip KISS byte */ in yam_tx_byte()
685 if (yp->tx_len >= YAM_MAX_FRAME || yp->tx_len < 2) { in yam_tx_byte()
691 yp->tx_len); in yam_tx_byte()
705 if (yp->tx_count >= yp->tx_len) { in yam_tx_byte()
Ddmascc.c211 int tx_len[NUM_TX_BUF]; member
932 priv->tx_len[i] = skb->len - 1; in scc_send_packet()
986 priv->tx_len[priv->tx_tail] - n); in tx_on()
1297 if (p == priv->tx_len[i]) { in tx_isr()
1303 while ((read_scc(priv, R0) & Tx_BUF_EMP) && p < priv->tx_len[i]) { in tx_isr()
1337 res = priv->tx_len[i] - priv->tx_ptr; in es_isr()
1355 priv->dev->stats.tx_bytes += priv->tx_len[i]; in es_isr()
/linux-4.4.14/drivers/net/ethernet/natsemi/
Dsonic.c128 dma_unmap_single(lp->device, lp->tx_laddr[i], lp->tx_len[i], DMA_TO_DEVICE); in sonic_close()
166 dma_unmap_single(lp->device, lp->tx_laddr[i], lp->tx_len[i], DMA_TO_DEVICE); in sonic_tx_timeout()
243 lp->tx_len[entry] = length; in sonic_send_packet()
328 dma_unmap_single(lp->device, lp->tx_laddr[entry], lp->tx_len[entry], DMA_TO_DEVICE); in sonic_interrupt()
Dsonic.h304 unsigned int tx_len[SONIC_NUM_TDS]; /* lengths of tx DMA mappings */ member
/linux-4.4.14/drivers/media/rc/
Dene_ir.h231 int tx_len; /* current len of tx buffer */ member
Dene_ir.c637 if (dev->tx_pos == dev->tx_len) { in ene_tx_sample()
977 dev->tx_len = n; in ene_transmit()
984 dbg("TX: %d samples", dev->tx_len); in ene_transmit()
/linux-4.4.14/drivers/net/ethernet/amd/
D7990.h81 volatile unsigned short tx_len; /* transmit len and high addr */ member
Da2065.c93 unsigned short tx_len; /* transmit len and high addr */ member
212 ib->tx_len = (lp->lance_log_tx_bufs << 13) | (leptr >> 16); in lance_init_ring()
Dsunlance.c223 u16 tx_len; /* transmit len and high addr */ member
373 ib->tx_len = (LANCE_LOG_TX_BUFFERS << 13) | (leptr >> 16); in lance_init_ring_dvma()
434 &ib->tx_len); in lance_init_ring_pio()
Ddeclance.c216 unsigned short tx_len; /* transmit len and high addr */ member
482 *lib_ptr(ib, tx_len, lp->type) = (LANCE_LOG_TX_BUFFERS << 13) | in lance_init_ring()
D7990.c216 ib->tx_len = (lp->lance_log_tx_bufs << 13) | (leptr >> 16); in lance_init_ring()
/linux-4.4.14/drivers/tty/serial/
Datmel_serial.c153 unsigned int tx_len; member
779 xmit->tail += atmel_port->tx_len; in atmel_complete_tx_dma()
782 port->icount.tx += atmel_port->tx_len; in atmel_complete_tx_dma()
831 unsigned int tx_len, part1_len, part2_len, sg_len; in atmel_tx_dma() local
848 tx_len = CIRC_CNT_TO_END(xmit->head, in atmel_tx_dma()
854 part1_len = (tx_len & ~0x3); /* DWORD access */ in atmel_tx_dma()
855 part2_len = (tx_len & 0x3); /* BYTE access */ in atmel_tx_dma()
859 part2_len = tx_len; /* BYTE access only */ in atmel_tx_dma()
883 atmel_port->tx_len = tx_len; in atmel_tx_dma()
/linux-4.4.14/include/net/bluetooth/
Dhci.h1462 __le16 tx_len; member
1473 __le16 tx_len; member
1479 __le16 tx_len; member
1486 __le16 tx_len; member
1927 __le16 tx_len; member
/linux-4.4.14/drivers/net/fddi/skfp/h/
Dhwmtm.h143 int tx_len ; /* tx frame length */ member
/linux-4.4.14/include/drm/
Ddrm_mipi_dsi.h40 size_t tx_len; member
/linux-4.4.14/arch/m68k/include/asm/
Dm68360_pram.h379 unsigned short tx_len; /* tx frame length counter */ member
/linux-4.4.14/drivers/atm/
Dfore200e.c1567 int tx_len = skb->len; in fore200e_send() local
1589 skb_len = tx_len = skb->len - 4; in fore200e_send()
1604 tx_len = skb_len; in fore200e_send()
1612 tx_len = ((skb_len / ATM_CELL_PAYLOAD) + 1) * ATM_CELL_PAYLOAD; in fore200e_send()
1616 data = kmalloc(tx_len, GFP_ATOMIC | GFP_DMA); in fore200e_send()
1628 if (skb_len < tx_len) in fore200e_send()
1629 memset(data + skb_len, 0x00, tx_len - skb_len); in fore200e_send()
1684 tpd->tsd[ 0 ].buffer = fore200e->bus->dma_map(fore200e, data, tx_len, DMA_TO_DEVICE); in fore200e_send()
1685 tpd->tsd[ 0 ].length = tx_len; in fore200e_send()
1724 tpd->spec.length = tx_len; in fore200e_send()
Dhorizon.c1699 unsigned int tx_len = skb->len; in hrz_send() local
1710 skb->data, tx_len); in hrz_send()
1718 dev->tx_bytes = tx_len; in hrz_send()
1721 skb->data, tx_len); in hrz_send()
Dambassador.c1312 unsigned int tx_len = skb->len; in amb_send() local
1321 vc, tx_data, tx_len); in amb_send()
1359 tx_descr->tx_frag.bytes = cpu_to_be32 (tx_len); in amb_send()
/linux-4.4.14/drivers/net/ethernet/broadcom/bnx2x/
Dbnx2x_stats.c366 u16 rx_len, tx_len; in bnx2x_port_stats_init() local
379 tx_len = (8 + BIGMAC_REGISTER_TX_STAT_GTBYT - in bnx2x_port_stats_init()
388 tx_len = (8 + BIGMAC2_REGISTER_TX_STAT_GTBYT - in bnx2x_port_stats_init()
405 tx_len = sizeof(bp->slowpath-> in bnx2x_port_stats_init()
417 dmae->len = tx_len; in bnx2x_port_stats_init()
430 U64_LO(bnx2x_sp_mapping(bp, mac_stats) + (tx_len << 2)); in bnx2x_port_stats_init()
432 U64_HI(bnx2x_sp_mapping(bp, mac_stats) + (tx_len << 2)); in bnx2x_port_stats_init()
/linux-4.4.14/drivers/net/ethernet/moxa/
Dmoxart_ether.h318 unsigned int tx_len[TX_DESC_NUM]; member
Dmoxart_ether.c277 priv->tx_len[tx_tail], DMA_TO_DEVICE); in moxart_tx_finished()
337 priv->tx_len[tx_head] = len; in moxart_mac_start_xmit()
/linux-4.4.14/drivers/gpu/drm/msm/dsi/
Ddsi_manager.c740 if (!msg->tx_buf || !msg->tx_len) in msm_dsi_manager_cmd_xfer()
749 return is_read ? msg->rx_len : msg->tx_len; in msm_dsi_manager_cmd_xfer()
Ddsi_host.c1650 .tx_len = 2, in msm_dsi_host_cmd_rx()
1675 if (ret < msg->tx_len) { in msm_dsi_host_cmd_rx()
/linux-4.4.14/drivers/firewire/
Dnet.c936 unsigned tx_len; in fwnet_send_packet() local
942 tx_len = ptask->max_payload; in fwnet_send_packet()
994 tx_len + 8, fwnet_write_complete, ptask); in fwnet_send_packet()
1013 ptask->skb->data, tx_len, fwnet_write_complete, ptask); in fwnet_send_packet()
/linux-4.4.14/drivers/net/fddi/skfp/
Dhwmtm.c1556 smc->os.hwm.tx_len = frame_len ; in hwm_tx_init()
1689 smc->os.hwm.tx_len) ; in hwm_tx_frag()
1711 smc->os.hwm.tx_len) ; in hwm_tx_frag()
1720 smc->os.hwm.tx_len - 1 ; in hwm_tx_frag()
/linux-4.4.14/drivers/scsi/qla2xxx/
Dqla_fw.h716 uint32_t tx_len; /* Data segment 0 length. */ member
1314 uint32_t tx_len; /* Data segment 0 length. */ member
Dqla_iocb.c2045 els_iocb->tx_len = cpu_to_le32(sg_dma_len in qla24xx_els_iocb()
/linux-4.4.14/net/sched/
Dsch_cbq.c160 int tx_len; member
698 int len = q->tx_len; in cbq_update()
873 q->tx_len = qdisc_pkt_len(skb); in cbq_dequeue_prio()
/linux-4.4.14/drivers/net/ethernet/broadcom/
Dtg3.c13372 int num_pkts, tx_len, rx_len, i, err; in tg3_run_loopback() local
13389 tx_len = pktsz; in tg3_run_loopback()
13390 skb = netdev_alloc_skb(tp->dev, tx_len); in tg3_run_loopback()
13394 tx_data = skb_put(skb, tx_len); in tg3_run_loopback()
13398 tw32(MAC_RX_MTU_SIZE, tx_len + ETH_FCS_LEN); in tg3_run_loopback()
13410 val = tx_len - ETH_ALEN * 2 - sizeof(tg3_tso_header); in tg3_run_loopback()
13449 tx_len > VLAN_ETH_FRAME_LEN) in tg3_run_loopback()
13453 for (i = data_off; i < tx_len; i++) in tg3_run_loopback()
13456 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE); in tg3_run_loopback()
13474 if (tg3_tx_frag_set(tnapi, &val, &budget, map, tx_len, in tg3_run_loopback()
[all …]
/linux-4.4.14/net/bluetooth/
Dhci_event.c1285 hdev->le_def_tx_len = le16_to_cpu(rp->tx_len); in hci_cc_le_read_def_data_len()
1304 hdev->le_def_tx_len = le16_to_cpu(sent->tx_len); in hci_cc_le_write_def_data_len()
1318 hdev->le_max_tx_len = le16_to_cpu(rp->tx_len); in hci_cc_le_read_max_data_len()