/kernel/linux/patches/linux-4.19/prebuilts/usr/include/linux/ |
D | cec-funcs.h | 9 static inline void cec_msg_active_source(struct cec_msg *msg, __u16 phys_addr) in cec_msg_active_source() argument 11 msg->len = 4; in cec_msg_active_source() 12 msg->msg[0] |= 0xf; in cec_msg_active_source() 13 msg->msg[1] = CEC_MSG_ACTIVE_SOURCE; in cec_msg_active_source() 14 msg->msg[2] = phys_addr >> 8; in cec_msg_active_source() 15 msg->msg[3] = phys_addr & 0xff; in cec_msg_active_source() 17 static inline void cec_ops_active_source(const struct cec_msg *msg, in cec_ops_active_source() argument 20 *phys_addr = (msg->msg[2] << 8) | msg->msg[3]; in cec_ops_active_source() 22 static inline void cec_msg_image_view_on(struct cec_msg *msg) in cec_msg_image_view_on() argument 24 msg->len = 2; in cec_msg_image_view_on() [all …]
|
/kernel/linux/linux-5.10/include/uapi/linux/ |
D | cec-funcs.h | 14 static inline void cec_msg_active_source(struct cec_msg *msg, __u16 phys_addr) in cec_msg_active_source() argument 16 msg->len = 4; in cec_msg_active_source() 17 msg->msg[0] |= 0xf; /* broadcast */ in cec_msg_active_source() 18 msg->msg[1] = CEC_MSG_ACTIVE_SOURCE; in cec_msg_active_source() 19 msg->msg[2] = phys_addr >> 8; in cec_msg_active_source() 20 msg->msg[3] = phys_addr & 0xff; in cec_msg_active_source() 23 static inline void cec_ops_active_source(const struct cec_msg *msg, in cec_ops_active_source() argument 26 *phys_addr = (msg->msg[2] << 8) | msg->msg[3]; in cec_ops_active_source() 29 static inline void cec_msg_image_view_on(struct cec_msg *msg) in cec_msg_image_view_on() argument 31 msg->len = 2; in cec_msg_image_view_on() [all …]
|
/kernel/linux/linux-5.10/sound/soc/sof/ |
D | probe.c | 31 struct sof_ipc_probe_dma_add_params *msg; in sof_ipc_probe_init() local 33 size_t size = struct_size(msg, dma, 1); in sof_ipc_probe_init() 36 msg = kmalloc(size, GFP_KERNEL); in sof_ipc_probe_init() 37 if (!msg) in sof_ipc_probe_init() 39 msg->hdr.size = size; in sof_ipc_probe_init() 40 msg->hdr.cmd = SOF_IPC_GLB_PROBE | SOF_IPC_PROBE_INIT; in sof_ipc_probe_init() 41 msg->num_elems = 1; in sof_ipc_probe_init() 42 msg->dma[0].stream_tag = stream_tag; in sof_ipc_probe_init() 43 msg->dma[0].dma_buffer_size = buffer_size; in sof_ipc_probe_init() 45 ret = sof_ipc_tx_message(sdev->ipc, msg->hdr.cmd, msg, msg->hdr.size, in sof_ipc_probe_init() [all …]
|
/kernel/linux/linux-5.10/fs/reiserfs/ |
D | hashes.c | 44 u32 keyed_hash(const signed char *msg, int len) in keyed_hash() argument 59 a = (u32) msg[0] | in keyed_hash() 60 (u32) msg[1] << 8 | (u32) msg[2] << 16 | (u32) msg[3] << 24; in keyed_hash() 61 b = (u32) msg[4] | in keyed_hash() 62 (u32) msg[5] << 8 | (u32) msg[6] << 16 | (u32) msg[7] << 24; in keyed_hash() 63 c = (u32) msg[8] | in keyed_hash() 64 (u32) msg[9] << 8 | in keyed_hash() 65 (u32) msg[10] << 16 | (u32) msg[11] << 24; in keyed_hash() 66 d = (u32) msg[12] | in keyed_hash() 67 (u32) msg[13] << 8 | in keyed_hash() [all …]
|
/kernel/linux/linux-5.10/drivers/gpu/drm/msm/adreno/ |
D | a6xx_hfi.c | 190 struct a6xx_hfi_msg_gmu_init_cmd msg = { 0 }; in a6xx_hfi_send_gmu_init() local 192 msg.dbg_buffer_addr = (u32) gmu->debug.iova; in a6xx_hfi_send_gmu_init() 193 msg.dbg_buffer_size = (u32) gmu->debug.size; in a6xx_hfi_send_gmu_init() 194 msg.boot_state = boot_state; in a6xx_hfi_send_gmu_init() 196 return a6xx_hfi_send_msg(gmu, HFI_H2F_MSG_INIT, &msg, sizeof(msg), in a6xx_hfi_send_gmu_init() 202 struct a6xx_hfi_msg_fw_version msg = { 0 }; in a6xx_hfi_get_fw_version() local 205 msg.supported_version = (1 << 28) | (1 << 16); in a6xx_hfi_get_fw_version() 207 return a6xx_hfi_send_msg(gmu, HFI_H2F_MSG_FW_VERSION, &msg, sizeof(msg), in a6xx_hfi_get_fw_version() 213 struct a6xx_hfi_msg_perf_table_v1 msg = { 0 }; in a6xx_hfi_send_perf_table_v1() local 216 msg.num_gpu_levels = gmu->nr_gpu_freqs; in a6xx_hfi_send_perf_table_v1() [all …]
|
/kernel/linux/linux-5.10/drivers/connector/ |
D | cn_proc.c | 51 static inline void send_msg(struct cn_msg *msg) in send_msg() argument 55 msg->seq = __this_cpu_inc_return(local_event.count) - 1; in send_msg() 56 ((struct proc_event *)msg->data)->cpu = smp_processor_id(); in send_msg() 64 cn_netlink_send(msg, 0, CN_IDX_PROC, GFP_NOWAIT); in send_msg() 71 struct cn_msg *msg; in proc_fork_connector() local 79 msg = buffer_to_cn_msg(buffer); in proc_fork_connector() 80 ev = (struct proc_event *)msg->data; in proc_fork_connector() 92 memcpy(&msg->id, &cn_proc_event_id, sizeof(msg->id)); in proc_fork_connector() 93 msg->ack = 0; /* not used */ in proc_fork_connector() 94 msg->len = sizeof(*ev); in proc_fork_connector() [all …]
|
/kernel/linux/linux-5.10/drivers/platform/chrome/ |
D | cros_ec_proto.c | 56 struct cros_ec_command *msg) in prepare_packet() argument 64 BUG_ON(msg->outsize + sizeof(*request) > ec_dev->dout_size); in prepare_packet() 70 request->command = msg->command; in prepare_packet() 71 request->command_version = msg->version; in prepare_packet() 73 request->data_len = msg->outsize; in prepare_packet() 79 memcpy(out + sizeof(*request), msg->data, msg->outsize); in prepare_packet() 80 for (i = 0; i < msg->outsize; i++) in prepare_packet() 81 csum += msg->data[i]; in prepare_packet() 85 return sizeof(*request) + msg->outsize; in prepare_packet() 89 struct cros_ec_command *msg) in send_command() argument [all …]
|
D | cros_ec_sysfs.c | 54 struct cros_ec_command *msg; in reboot_store() local 61 msg = kmalloc(sizeof(*msg) + sizeof(*param), GFP_KERNEL); in reboot_store() 62 if (!msg) in reboot_store() 65 param = (struct ec_params_reboot_ec *)msg->data; in reboot_store() 98 msg->version = 0; in reboot_store() 99 msg->command = EC_CMD_REBOOT_EC + ec->cmd_offset; in reboot_store() 100 msg->outsize = sizeof(*param); in reboot_store() 101 msg->insize = 0; in reboot_store() 102 ret = cros_ec_cmd_xfer_status(ec->ec_dev, msg); in reboot_store() 106 kfree(msg); in reboot_store() [all …]
|
/kernel/linux/linux-5.10/drivers/infiniband/hw/cxgb4/ |
D | restrack.c | 39 static int fill_sq(struct sk_buff *msg, struct t4_wq *wq) in fill_sq() argument 42 if (rdma_nl_put_driver_u32(msg, "sqid", wq->sq.qid)) in fill_sq() 44 if (rdma_nl_put_driver_u32(msg, "flushed", wq->flushed)) in fill_sq() 46 if (rdma_nl_put_driver_u32(msg, "memsize", wq->sq.memsize)) in fill_sq() 48 if (rdma_nl_put_driver_u32(msg, "cidx", wq->sq.cidx)) in fill_sq() 50 if (rdma_nl_put_driver_u32(msg, "pidx", wq->sq.pidx)) in fill_sq() 52 if (rdma_nl_put_driver_u32(msg, "wq_pidx", wq->sq.wq_pidx)) in fill_sq() 54 if (rdma_nl_put_driver_u32(msg, "flush_cidx", wq->sq.flush_cidx)) in fill_sq() 56 if (rdma_nl_put_driver_u32(msg, "in_use", wq->sq.in_use)) in fill_sq() 58 if (rdma_nl_put_driver_u32(msg, "size", wq->sq.size)) in fill_sq() [all …]
|
/kernel/linux/linux-5.10/drivers/staging/media/allegro-dvt/ |
D | allegro-mail.c | 44 allegro_enc_init(u32 *dst, struct mcu_msg_init_request *msg) in allegro_enc_init() argument 47 enum mcu_msg_version version = msg->header.version; in allegro_enc_init() 49 dst[i++] = msg->reserved0; in allegro_enc_init() 50 dst[i++] = msg->suballoc_dma; in allegro_enc_init() 51 dst[i++] = msg->suballoc_size; in allegro_enc_init() 52 dst[i++] = msg->l2_cache[0]; in allegro_enc_init() 53 dst[i++] = msg->l2_cache[1]; in allegro_enc_init() 54 dst[i++] = msg->l2_cache[2]; in allegro_enc_init() 227 allegro_enc_create_channel(u32 *dst, struct mcu_msg_create_channel *msg) in allegro_enc_create_channel() argument 229 enum mcu_msg_version version = msg->header.version; in allegro_enc_create_channel() [all …]
|
/kernel/linux/linux-5.10/drivers/s390/crypto/ |
D | zcrypt_msgtype6.c | 269 } __packed * msg = ap_msg->msg; in ICAMEX_msg_to_type6MEX_msgX() local 281 msg->length = mex->inputdatalength + 2; in ICAMEX_msg_to_type6MEX_msgX() 282 if (copy_from_user(msg->text, mex->inputdata, mex->inputdatalength)) in ICAMEX_msg_to_type6MEX_msgX() 286 size = zcrypt_type6_mex_key_en(mex, msg->text+mex->inputdatalength); in ICAMEX_msg_to_type6MEX_msgX() 289 size += sizeof(*msg) + mex->inputdatalength; in ICAMEX_msg_to_type6MEX_msgX() 292 msg->hdr = static_type6_hdrX; in ICAMEX_msg_to_type6MEX_msgX() 293 msg->hdr.ToCardLen1 = size - sizeof(msg->hdr); in ICAMEX_msg_to_type6MEX_msgX() 294 msg->hdr.FromCardLen1 = CEXXC_MAX_ICA_RESPONSE_SIZE - sizeof(msg->hdr); in ICAMEX_msg_to_type6MEX_msgX() 296 msg->cprbx = static_cprbx; in ICAMEX_msg_to_type6MEX_msgX() 297 msg->cprbx.domain = AP_QID_QUEUE(zq->queue->qid); in ICAMEX_msg_to_type6MEX_msgX() [all …]
|
/kernel/linux/linux-5.10/drivers/staging/wfx/ |
D | key.c | 33 static u8 fill_wep_pair(struct hif_wep_pairwise_key *msg, in fill_wep_pair() argument 36 WARN(key->keylen > sizeof(msg->key_data), "inconsistent data"); in fill_wep_pair() 37 msg->key_length = key->keylen; in fill_wep_pair() 38 memcpy(msg->key_data, key->key, key->keylen); in fill_wep_pair() 39 ether_addr_copy(msg->peer_address, peer_addr); in fill_wep_pair() 43 static u8 fill_wep_group(struct hif_wep_group_key *msg, in fill_wep_group() argument 46 WARN(key->keylen > sizeof(msg->key_data), "inconsistent data"); in fill_wep_group() 47 msg->key_id = key->keyidx; in fill_wep_group() 48 msg->key_length = key->keylen; in fill_wep_group() 49 memcpy(msg->key_data, key->key, key->keylen); in fill_wep_group() [all …]
|
/kernel/linux/linux-5.10/drivers/media/cec/core/ |
D | cec-adap.c | 27 struct cec_msg *msg, 228 static void cec_queue_msg_fh(struct cec_fh *fh, const struct cec_msg *msg) in cec_queue_msg_fh() argument 242 entry->msg = *msg; in cec_queue_msg_fh() 282 const struct cec_msg *msg, in cec_queue_msg_monitor() argument 292 cec_queue_msg_fh(fh, msg); in cec_queue_msg_monitor() 301 const struct cec_msg *msg) in cec_queue_msg_followers() argument 308 cec_queue_msg_fh(fh, msg); in cec_queue_msg_followers() 360 cec_queue_msg_fh(data->fh, &data->msg); in cec_data_completed() 382 if (!(data->msg.tx_status & CEC_TX_STATUS_OK)) in cec_data_cancel() 387 if (data->msg.tx_status & CEC_TX_STATUS_OK) { in cec_data_cancel() [all …]
|
/kernel/linux/linux-5.10/drivers/media/platform/mtk-vcodec/ |
D | vdec_vpu_if.c | 13 static void handle_init_ack_msg(const struct vdec_vpu_ipi_init_ack *msg) in handle_init_ack_msg() argument 16 (unsigned long)msg->ap_inst_addr; in handle_init_ack_msg() 18 mtk_vcodec_debug(vpu, "+ ap_inst_addr = 0x%llx", msg->ap_inst_addr); in handle_init_ack_msg() 23 msg->vpu_inst_addr); in handle_init_ack_msg() 24 vpu->inst_addr = msg->vpu_inst_addr; in handle_init_ack_msg() 41 const struct vdec_vpu_ipi_ack *msg = data; in vpu_dec_ipi_handler() local 43 (unsigned long)msg->ap_inst_addr; in vpu_dec_ipi_handler() 45 mtk_vcodec_debug(vpu, "+ id=%X", msg->msg_id); in vpu_dec_ipi_handler() 47 if (msg->status == 0) { in vpu_dec_ipi_handler() 48 switch (msg->msg_id) { in vpu_dec_ipi_handler() [all …]
|
/kernel/linux/linux-5.10/sound/soc/intel/common/ |
D | sst-ipc.c | 34 struct ipc_message *msg = NULL; in msg_get_empty() local 37 msg = list_first_entry(&ipc->empty_list, struct ipc_message, in msg_get_empty() 39 list_del(&msg->list); in msg_get_empty() 42 return msg; in msg_get_empty() 46 struct ipc_message *msg, struct sst_ipc_message *reply) in tx_wait_done() argument 52 ret = wait_event_timeout(msg->waitq, msg->complete, in tx_wait_done() 60 list_del(&msg->list); in tx_wait_done() 66 reply->header = msg->rx.header; in tx_wait_done() 68 memcpy(reply->data, msg->rx.data, msg->rx.size); in tx_wait_done() 70 ret = msg->errno; in tx_wait_done() [all …]
|
/kernel/linux/linux-5.10/net/tipc/ |
D | netlink_compat.c | 68 int (*format)(struct tipc_nl_compat_msg *msg, struct nlattr **attrs); 74 struct sk_buff *skb, struct tipc_nl_compat_msg *msg); 181 struct tipc_nl_compat_msg *msg, in __tipc_nl_compat_dumpit() argument 201 buf->sk = msg->dst_sk; in __tipc_nl_compat_dumpit() 202 if (__tipc_dump_start(&cb, msg->net)) { in __tipc_nl_compat_dumpit() 235 err = (*cmd->format)(msg, attrbuf); in __tipc_nl_compat_dumpit() 239 if (tipc_skb_tailroom(msg->rep) <= 1) { in __tipc_nl_compat_dumpit() 261 if ((TIPC_SKB_MAX - msg->rep->len) <= 1) { in __tipc_nl_compat_dumpit() 262 char *tail = skb_tail_pointer(msg->rep); in __tipc_nl_compat_dumpit() 276 struct tipc_nl_compat_msg *msg) in tipc_nl_compat_dumpit() argument [all …]
|
/kernel/linux/linux-5.10/drivers/net/can/usb/ |
D | esd_usb2.c | 171 } msg; member 217 struct esd_usb2_msg *msg) in esd_usb2_rx_event() argument 222 u32 id = le32_to_cpu(msg->msg.rx.id) & ESD_IDMASK; in esd_usb2_rx_event() 225 u8 state = msg->msg.rx.data[0]; in esd_usb2_rx_event() 226 u8 ecc = msg->msg.rx.data[1]; in esd_usb2_rx_event() 227 u8 rxerr = msg->msg.rx.data[2]; in esd_usb2_rx_event() 228 u8 txerr = msg->msg.rx.data[3]; in esd_usb2_rx_event() 232 msg->msg.rx.dlc, state, ecc, rxerr, txerr); in esd_usb2_rx_event() 309 struct esd_usb2_msg *msg) in esd_usb2_rx_can_msg() argument 320 id = le32_to_cpu(msg->msg.rx.id); in esd_usb2_rx_can_msg() [all …]
|
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/modules/hdcp/ |
D | hdcp_log.h | 96 #define HDCP_DDC_READ_TRACE(hdcp, msg_name, msg, msg_size) do { \ argument 97 mod_hdcp_dump_binary_message(msg, msg_size, hdcp->buf, \ 102 #define HDCP_DDC_WRITE_TRACE(hdcp, msg_name, msg, msg_size) do { \ argument 103 mod_hdcp_dump_binary_message(msg, msg_size, hdcp->buf, \ 111 HDCP_DDC_READ_TRACE(hdcp, "BKSV", hdcp->auth.msg.hdcp1.bksv, \ 112 sizeof(hdcp->auth.msg.hdcp1.bksv)); \ 113 HDCP_DDC_READ_TRACE(hdcp, "BCAPS", &hdcp->auth.msg.hdcp1.bcaps, \ 114 sizeof(hdcp->auth.msg.hdcp1.bcaps)); \ 116 (uint8_t *)&hdcp->auth.msg.hdcp1.bstatus, \ 117 sizeof(hdcp->auth.msg.hdcp1.bstatus)); \ [all …]
|
D | hdcp_ddc.c | 249 hdcp->auth.msg.hdcp1.bksv, in mod_hdcp_read_bksv() 250 sizeof(hdcp->auth.msg.hdcp1.bksv)); in mod_hdcp_read_bksv() 256 &hdcp->auth.msg.hdcp1.bcaps, in mod_hdcp_read_bcaps() 257 sizeof(hdcp->auth.msg.hdcp1.bcaps)); in mod_hdcp_read_bcaps() 266 (uint8_t *)&hdcp->auth.msg.hdcp1.bstatus, in mod_hdcp_read_bstatus() 270 (uint8_t *)&hdcp->auth.msg.hdcp1.bstatus, in mod_hdcp_read_bstatus() 271 sizeof(hdcp->auth.msg.hdcp1.bstatus)); in mod_hdcp_read_bstatus() 278 (uint8_t *)&hdcp->auth.msg.hdcp1.r0p, in mod_hdcp_read_r0p() 279 sizeof(hdcp->auth.msg.hdcp1.r0p)); in mod_hdcp_read_r0p() 289 hdcp->auth.msg.hdcp1.ksvlist, in mod_hdcp_read_ksvlist() [all …]
|
/kernel/linux/linux-5.10/include/trace/events/ |
D | spi.h | 47 TP_PROTO(struct spi_message *msg), 49 TP_ARGS(msg), 54 __field( struct spi_message *, msg ) 58 __entry->bus_num = msg->spi->controller->bus_num; 59 __entry->chip_select = msg->spi->chip_select; 60 __entry->msg = msg; 65 (struct spi_message *)__entry->msg) 70 TP_PROTO(struct spi_message *msg), 72 TP_ARGS(msg) 78 TP_PROTO(struct spi_message *msg), [all …]
|
/kernel/linux/linux-5.10/drivers/staging/wlan-ng/ |
D | prism2mgmt.c | 133 struct p80211msg_dot11req_scan *msg = msgp; in prism2mgmt_scan() local 148 msg->resultcode.data = P80211ENUM_resultcode_not_supported; in prism2mgmt_scan() 161 msg->resultcode.data = in prism2mgmt_scan() 174 msg->resultcode.data = in prism2mgmt_scan() 184 if (msg->scantype.data != P80211ENUM_scantype_active) in prism2mgmt_scan() 185 word = msg->maxchanneltime.data; in prism2mgmt_scan() 204 for (i = 0; i < msg->channellist.data.len; i++) { in prism2mgmt_scan() 205 u8 channel = msg->channellist.data.data[i]; in prism2mgmt_scan() 215 scanreq.ssid.len = cpu_to_le16(msg->ssid.data.len); in prism2mgmt_scan() 216 memcpy(scanreq.ssid.data, msg->ssid.data.data, msg->ssid.data.len); in prism2mgmt_scan() [all …]
|
/kernel/linux/linux-5.10/drivers/clk/tegra/ |
D | clk-bpmp.c | 63 struct tegra_bpmp_message msg; in tegra_bpmp_clk_transfer() local 79 memset(&msg, 0, sizeof(msg)); in tegra_bpmp_clk_transfer() 80 msg.mrq = MRQ_CLK; in tegra_bpmp_clk_transfer() 81 msg.tx.data = &request; in tegra_bpmp_clk_transfer() 82 msg.tx.size = sizeof(request); in tegra_bpmp_clk_transfer() 83 msg.rx.data = clk->rx.data; in tegra_bpmp_clk_transfer() 84 msg.rx.size = clk->rx.size; in tegra_bpmp_clk_transfer() 86 err = tegra_bpmp_transfer(bpmp, &msg); in tegra_bpmp_clk_transfer() 89 else if (msg.rx.ret < 0) in tegra_bpmp_clk_transfer() 98 struct tegra_bpmp_clk_message msg; in tegra_bpmp_clk_prepare() local [all …]
|
/kernel/linux/linux-5.10/drivers/net/ethernet/hisilicon/hns3/hns3pf/ |
D | hclge_err.c | 7 { .int_msk = BIT(1), .msg = "imp_itcm0_ecc_mbit_err", 9 { .int_msk = BIT(3), .msg = "imp_itcm1_ecc_mbit_err", 11 { .int_msk = BIT(5), .msg = "imp_itcm2_ecc_mbit_err", 13 { .int_msk = BIT(7), .msg = "imp_itcm3_ecc_mbit_err", 15 { .int_msk = BIT(9), .msg = "imp_dtcm0_mem0_ecc_mbit_err", 17 { .int_msk = BIT(11), .msg = "imp_dtcm0_mem1_ecc_mbit_err", 19 { .int_msk = BIT(13), .msg = "imp_dtcm1_mem0_ecc_mbit_err", 21 { .int_msk = BIT(15), .msg = "imp_dtcm1_mem1_ecc_mbit_err", 23 { .int_msk = BIT(17), .msg = "imp_itcm4_ecc_mbit_err", 29 { .int_msk = BIT(1), .msg = "cmdq_nic_rx_depth_ecc_mbit_err", [all …]
|
/kernel/linux/linux-5.10/drivers/iio/common/ssp_sensors/ |
D | ssp_spi.c | 78 struct ssp_msg *msg; in ssp_create_msg() local 80 msg = kzalloc(sizeof(*msg), GFP_KERNEL); in ssp_create_msg() 81 if (!msg) in ssp_create_msg() 89 msg->buffer = kzalloc(SSP_HEADER_SIZE_ALIGNED + len, in ssp_create_msg() 91 if (!msg->buffer) { in ssp_create_msg() 92 kfree(msg); in ssp_create_msg() 96 msg->length = len; in ssp_create_msg() 97 msg->options = opt; in ssp_create_msg() 99 memcpy(msg->buffer, &h, SSP_HEADER_SIZE); in ssp_create_msg() 101 return msg; in ssp_create_msg() [all …]
|
/kernel/linux/linux-5.10/drivers/net/wireless/ath/wil6210/ |
D | txrx_edma.h | 347 static inline __le16 wil_rx_status_get_length(void *msg) in wil_rx_status_get_length() argument 349 return ((struct wil_rx_status_compressed *)msg)->length; in wil_rx_status_get_length() 352 static inline u8 wil_rx_status_get_mcs(void *msg) in wil_rx_status_get_mcs() argument 354 return WIL_GET_BITS(((struct wil_rx_status_compressed *)msg)->d1, in wil_rx_status_get_mcs() 358 static inline u8 wil_rx_status_get_cb_mode(void *msg) in wil_rx_status_get_cb_mode() argument 360 return WIL_GET_BITS(((struct wil_rx_status_compressed *)msg)->d1, in wil_rx_status_get_cb_mode() 364 static inline u16 wil_rx_status_get_flow_id(void *msg) in wil_rx_status_get_flow_id() argument 366 return WIL_GET_BITS(((struct wil_rx_status_compressed *)msg)->d0, in wil_rx_status_get_flow_id() 370 static inline u8 wil_rx_status_get_mcast(void *msg) in wil_rx_status_get_mcast() argument 372 return WIL_GET_BITS(((struct wil_rx_status_compressed *)msg)->d0, in wil_rx_status_get_mcast() [all …]
|