Home
last modified time | relevance | path

Searched refs:tx_header (Results 1 – 4 of 4) sorted by relevance

/Zephyr-latest/subsys/mgmt/ec_host_cmd/
Dec_host_cmd_handler.c198 struct ec_host_cmd_response_header *const tx_header = (void *)tx->buf; in send_status_response() local
200 tx_header->prtcl_ver = 3; in send_status_response()
201 tx_header->result = status; in send_status_response()
202 tx_header->data_len = 0; in send_status_response()
203 tx_header->reserved = 0; in send_status_response()
204 tx_header->checksum = 0; in send_status_response()
205 tx_header->checksum = cal_checksum((uint8_t *)tx_header, TX_HEADER_SIZE); in send_status_response()
266 struct ec_host_cmd_response_header *const tx_header = (void *)tx->buf; in prepare_response() local
268 tx_header->prtcl_ver = 3; in prepare_response()
269 tx_header->result = EC_HOST_CMD_SUCCESS; in prepare_response()
[all …]
/Zephyr-latest/drivers/usb_c/tcpc/
Ducpd_stm32.c925 union pd_header tx_header; in ucpd_send_good_crc() local
957 tx_header.message_type = PD_CTRL_GOOD_CRC; in ucpd_send_good_crc()
959 tx_header.port_power_role = data->msg_header.pr; in ucpd_send_good_crc()
960 tx_header.port_data_role = data->msg_header.dr; in ucpd_send_good_crc()
962 tx_header.port_power_role = 0; in ucpd_send_good_crc()
963 tx_header.port_data_role = 0; in ucpd_send_good_crc()
965 tx_header.message_id = rx_header.message_id; in ucpd_send_good_crc()
966 tx_header.number_of_data_objects = 0; in ucpd_send_good_crc()
967 tx_header.specification_revision = rx_header.specification_revision; in ucpd_send_good_crc()
968 tx_header.extended = 0; in ucpd_send_good_crc()
[all …]
/Zephyr-latest/drivers/ethernet/eth_nxp_enet_qos/
Dnxp_enet_qos_priv.h101 struct net_buf *tx_header; member
Deth_nxp_enet_qos_mac.c89 data->tx.tx_header = pkt->frags; in eth_nxp_enet_qos_tx()
148 net_pkt_frag_unref(data->tx.tx_header); in tx_dma_done()