Home
last modified time | relevance | path

Searched refs:use_tpd (Results 1 – 2 of 2) sorted by relevance

/Linux-v5.15/drivers/net/ethernet/atheros/atl1e/
Datl1e_main.c1700 struct atl1e_tpd_desc *use_tpd = NULL; in atl1e_tx_map() local
1717 use_tpd = tpd; in atl1e_tx_map()
1719 tx_buffer = atl1e_get_tx_buffer(adapter, use_tpd); in atl1e_tx_map()
1729 use_tpd->buffer_addr = cpu_to_le64(tx_buffer->dma); in atl1e_tx_map()
1730 use_tpd->word2 = (use_tpd->word2 & (~TPD_BUFLEN_MASK)) | in atl1e_tx_map()
1739 use_tpd = tpd; in atl1e_tx_map()
1741 use_tpd = atl1e_get_tpd(adapter); in atl1e_tx_map()
1742 memcpy(use_tpd, tpd, sizeof(struct atl1e_tpd_desc)); in atl1e_tx_map()
1744 tx_buffer = atl1e_get_tx_buffer(adapter, use_tpd); in atl1e_tx_map()
1774 use_tpd->buffer_addr = cpu_to_le64(tx_buffer->dma); in atl1e_tx_map()
[all …]
/Linux-v5.15/drivers/net/ethernet/atheros/atl1c/
Datl1c_main.c2208 struct atl1c_tpd_desc *use_tpd = NULL; in atl1c_tx_map() local
2223 use_tpd = tpd; in atl1c_tx_map()
2225 buffer_info = atl1c_get_tx_buffer(adapter, use_tpd); in atl1c_tx_map()
2236 use_tpd->buffer_addr = cpu_to_le64(buffer_info->dma); in atl1c_tx_map()
2237 use_tpd->buffer_len = cpu_to_le16(buffer_info->length); in atl1c_tx_map()
2244 use_tpd = tpd; in atl1c_tx_map()
2246 use_tpd = atl1c_get_tpd(adapter, queue); in atl1c_tx_map()
2247 memcpy(use_tpd, tpd, sizeof(struct atl1c_tpd_desc)); in atl1c_tx_map()
2249 buffer_info = atl1c_get_tx_buffer(adapter, use_tpd); in atl1c_tx_map()
2261 use_tpd->buffer_addr = cpu_to_le64(buffer_info->dma); in atl1c_tx_map()
[all …]