Home
last modified time | relevance | path

Searched refs:mailbox (Results 1 – 25 of 50) sorted by relevance

12

/drivers/infiniband/hw/mthca/
Dmthca_cmd.c610 struct mthca_mailbox *mailbox; in mthca_alloc_mailbox() local
612 mailbox = kmalloc(sizeof *mailbox, gfp_mask); in mthca_alloc_mailbox()
613 if (!mailbox) in mthca_alloc_mailbox()
616 mailbox->buf = pci_pool_alloc(dev->cmd.pool, gfp_mask, &mailbox->dma); in mthca_alloc_mailbox()
617 if (!mailbox->buf) { in mthca_alloc_mailbox()
618 kfree(mailbox); in mthca_alloc_mailbox()
622 return mailbox; in mthca_alloc_mailbox()
625 void mthca_free_mailbox(struct mthca_dev *dev, struct mthca_mailbox *mailbox) in mthca_free_mailbox() argument
627 if (!mailbox) in mthca_free_mailbox()
630 pci_pool_free(dev->cmd.pool, mailbox->buf, mailbox->dma); in mthca_free_mailbox()
[all …]
Dmthca_mcg.c67 struct mthca_mailbox *mailbox; in find_mgm() local
72 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL); in find_mgm()
73 if (IS_ERR(mailbox)) in find_mgm()
75 mgid = mailbox->buf; in find_mgm()
79 err = mthca_MGID_HASH(dev, mailbox, hash); in find_mgm()
116 mthca_free_mailbox(dev, mailbox); in find_mgm()
123 struct mthca_mailbox *mailbox; in mthca_multicast_attach() local
131 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL); in mthca_multicast_attach()
132 if (IS_ERR(mailbox)) in mthca_multicast_attach()
133 return PTR_ERR(mailbox); in mthca_multicast_attach()
[all …]
Dmthca_cmd.h253 void mthca_free_mailbox(struct mthca_dev *dev, struct mthca_mailbox *mailbox);
283 int mthca_SW2HW_MPT(struct mthca_dev *dev, struct mthca_mailbox *mailbox,
285 int mthca_HW2SW_MPT(struct mthca_dev *dev, struct mthca_mailbox *mailbox,
287 int mthca_WRITE_MTT(struct mthca_dev *dev, struct mthca_mailbox *mailbox,
292 int mthca_SW2HW_EQ(struct mthca_dev *dev, struct mthca_mailbox *mailbox,
294 int mthca_HW2SW_EQ(struct mthca_dev *dev, struct mthca_mailbox *mailbox,
296 int mthca_SW2HW_CQ(struct mthca_dev *dev, struct mthca_mailbox *mailbox,
298 int mthca_HW2SW_CQ(struct mthca_dev *dev, struct mthca_mailbox *mailbox,
301 int mthca_SW2HW_SRQ(struct mthca_dev *dev, struct mthca_mailbox *mailbox,
303 int mthca_HW2SW_SRQ(struct mthca_dev *dev, struct mthca_mailbox *mailbox,
[all …]
Dmthca_srq.c202 struct mthca_mailbox *mailbox; in mthca_alloc_srq() local
248 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL); in mthca_alloc_srq()
249 if (IS_ERR(mailbox)) { in mthca_alloc_srq()
250 err = PTR_ERR(mailbox); in mthca_alloc_srq()
264 mthca_arbel_init_srq_context(dev, pd, srq, mailbox->buf); in mthca_alloc_srq()
266 mthca_tavor_init_srq_context(dev, pd, srq, mailbox->buf); in mthca_alloc_srq()
268 err = mthca_SW2HW_SRQ(dev, mailbox, srq->srqn); in mthca_alloc_srq()
284 mthca_free_mailbox(dev, mailbox); in mthca_alloc_srq()
295 err = mthca_HW2SW_SRQ(dev, mailbox, srq->srqn); in mthca_alloc_srq()
304 mthca_free_mailbox(dev, mailbox); in mthca_alloc_srq()
[all …]
Dmthca_mr.c257 struct mthca_mailbox *mailbox; in __mthca_write_mtt() local
262 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL); in __mthca_write_mtt()
263 if (IS_ERR(mailbox)) in __mthca_write_mtt()
264 return PTR_ERR(mailbox); in __mthca_write_mtt()
265 mtt_entry = mailbox->buf; in __mthca_write_mtt()
283 err = mthca_WRITE_MTT(dev, mailbox, (i + 1) & ~1); in __mthca_write_mtt()
295 mthca_free_mailbox(dev, mailbox); in __mthca_write_mtt()
432 struct mthca_mailbox *mailbox; in mthca_mr_alloc() local
452 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL); in mthca_mr_alloc()
453 if (IS_ERR(mailbox)) { in mthca_mr_alloc()
[all …]
Dmthca_eq.c473 struct mthca_mailbox *mailbox; in mthca_create_eq() local
494 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL); in mthca_create_eq()
495 if (IS_ERR(mailbox)) in mthca_create_eq()
497 eq_context = mailbox->buf; in mthca_create_eq()
545 err = mthca_SW2HW_EQ(dev, mailbox, eq->eqn); in mthca_create_eq()
552 mthca_free_mailbox(dev, mailbox); in mthca_create_eq()
578 mthca_free_mailbox(dev, mailbox); in mthca_create_eq()
591 struct mthca_mailbox *mailbox; in mthca_free_eq() local
597 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL); in mthca_free_eq()
598 if (IS_ERR(mailbox)) in mthca_free_eq()
[all …]
Dmthca_cq.c780 struct mthca_mailbox *mailbox; in mthca_init_cq() local
813 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL); in mthca_init_cq()
814 if (IS_ERR(mailbox)) in mthca_init_cq()
817 cq_context = mailbox->buf; in mthca_init_cq()
850 err = mthca_SW2HW_CQ(dev, mailbox, cq->cqn); in mthca_init_cq()
867 mthca_free_mailbox(dev, mailbox); in mthca_init_cq()
876 mthca_free_mailbox(dev, mailbox); in mthca_init_cq()
909 struct mthca_mailbox *mailbox; in mthca_free_cq() local
912 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL); in mthca_free_cq()
913 if (IS_ERR(mailbox)) { in mthca_free_cq()
[all …]
Dmthca_qp.c430 struct mthca_mailbox *mailbox = NULL; in mthca_query_qp() local
442 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL); in mthca_query_qp()
443 if (IS_ERR(mailbox)) { in mthca_query_qp()
444 err = PTR_ERR(mailbox); in mthca_query_qp()
448 err = mthca_QUERY_QP(dev, qp->qpn, 0, mailbox); in mthca_query_qp()
454 qp_param = mailbox->buf; in mthca_query_qp()
508 mthca_free_mailbox(dev, mailbox); in mthca_query_qp()
549 struct mthca_mailbox *mailbox; in __mthca_modify_qp() local
555 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL); in __mthca_modify_qp()
556 if (IS_ERR(mailbox)) { in __mthca_modify_qp()
[all …]
/drivers/net/ethernet/mellanox/mlx4/
Dcq.c96 static int mlx4_SW2HW_CQ(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox, in mlx4_SW2HW_CQ() argument
99 return mlx4_cmd(dev, mailbox->dma, cq_num, 0, in mlx4_SW2HW_CQ()
104 static int mlx4_MODIFY_CQ(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox, in mlx4_MODIFY_CQ() argument
107 return mlx4_cmd(dev, mailbox->dma, cq_num, opmod, MLX4_CMD_MODIFY_CQ, in mlx4_MODIFY_CQ()
111 static int mlx4_HW2SW_CQ(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox, in mlx4_HW2SW_CQ() argument
114 return mlx4_cmd_box(dev, 0, mailbox ? mailbox->dma : 0, in mlx4_HW2SW_CQ()
115 cq_num, mailbox ? 0 : 1, MLX4_CMD_HW2SW_CQ, in mlx4_HW2SW_CQ()
122 struct mlx4_cmd_mailbox *mailbox; in mlx4_cq_modify() local
126 mailbox = mlx4_alloc_cmd_mailbox(dev); in mlx4_cq_modify()
127 if (IS_ERR(mailbox)) in mlx4_cq_modify()
[all …]
Dmcg.c66 struct mlx4_cmd_mailbox *mailbox, in mlx4_QP_FLOW_STEERING_ATTACH() argument
73 err = mlx4_cmd_imm(dev, mailbox->dma, &imm, size, 0, in mlx4_QP_FLOW_STEERING_ATTACH()
95 struct mlx4_cmd_mailbox *mailbox) in mlx4_READ_ENTRY() argument
97 return mlx4_cmd_box(dev, 0, mailbox->dma, index, 0, MLX4_CMD_READ_MCG, in mlx4_READ_ENTRY()
102 struct mlx4_cmd_mailbox *mailbox) in mlx4_WRITE_ENTRY() argument
104 return mlx4_cmd(dev, mailbox->dma, index, 0, MLX4_CMD_WRITE_MCG, in mlx4_WRITE_ENTRY()
109 struct mlx4_cmd_mailbox *mailbox) in mlx4_WRITE_PROMISC() argument
114 return mlx4_cmd(dev, mailbox->dma, in_mod, 0x1, in mlx4_WRITE_PROMISC()
119 static int mlx4_GID_HASH(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox, in mlx4_GID_HASH() argument
125 err = mlx4_cmd_imm(dev, mailbox->dma, &imm, 0, op_mod, in mlx4_GID_HASH()
[all …]
Den_port.c46 struct mlx4_cmd_mailbox *mailbox; in mlx4_SET_VLAN_FLTR() local
54 mailbox = mlx4_alloc_cmd_mailbox(dev); in mlx4_SET_VLAN_FLTR()
55 if (IS_ERR(mailbox)) in mlx4_SET_VLAN_FLTR()
56 return PTR_ERR(mailbox); in mlx4_SET_VLAN_FLTR()
58 filter = mailbox->buf; in mlx4_SET_VLAN_FLTR()
67 err = mlx4_cmd(dev, mailbox->dma, priv->port, 0, MLX4_CMD_SET_VLAN_FLTR, in mlx4_SET_VLAN_FLTR()
69 mlx4_free_cmd_mailbox(dev, mailbox); in mlx4_SET_VLAN_FLTR()
78 struct mlx4_cmd_mailbox *mailbox; in mlx4_en_QUERY_PORT() local
81 mailbox = mlx4_alloc_cmd_mailbox(mdev->dev); in mlx4_en_QUERY_PORT()
82 if (IS_ERR(mailbox)) in mlx4_en_QUERY_PORT()
[all …]
Dport.c107 struct mlx4_cmd_mailbox *mailbox; in mlx4_set_port_mac_table() local
111 mailbox = mlx4_alloc_cmd_mailbox(dev); in mlx4_set_port_mac_table()
112 if (IS_ERR(mailbox)) in mlx4_set_port_mac_table()
113 return PTR_ERR(mailbox); in mlx4_set_port_mac_table()
115 memcpy(mailbox->buf, entries, MLX4_MAC_TABLE_SIZE); in mlx4_set_port_mac_table()
119 err = mlx4_cmd(dev, mailbox->dma, in_mod, 1, MLX4_CMD_SET_PORT, in mlx4_set_port_mac_table()
122 mlx4_free_cmd_mailbox(dev, mailbox); in mlx4_set_port_mac_table()
276 struct mlx4_cmd_mailbox *mailbox; in mlx4_set_port_vlan_table() local
280 mailbox = mlx4_alloc_cmd_mailbox(dev); in mlx4_set_port_vlan_table()
281 if (IS_ERR(mailbox)) in mlx4_set_port_vlan_table()
[all …]
Dsrq.c67 static int mlx4_SW2HW_SRQ(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox, in mlx4_SW2HW_SRQ() argument
70 return mlx4_cmd(dev, mailbox->dma, srq_num, 0, in mlx4_SW2HW_SRQ()
75 static int mlx4_HW2SW_SRQ(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox, in mlx4_HW2SW_SRQ() argument
78 return mlx4_cmd_box(dev, 0, mailbox ? mailbox->dma : 0, srq_num, in mlx4_HW2SW_SRQ()
79 mailbox ? 0 : 1, MLX4_CMD_HW2SW_SRQ, in mlx4_HW2SW_SRQ()
89 static int mlx4_QUERY_SRQ(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox, in mlx4_QUERY_SRQ() argument
92 return mlx4_cmd_box(dev, 0, mailbox->dma, srq_num, 0, MLX4_CMD_QUERY_SRQ, in mlx4_QUERY_SRQ()
169 struct mlx4_cmd_mailbox *mailbox; in mlx4_srq_alloc() local
184 mailbox = mlx4_alloc_cmd_mailbox(dev); in mlx4_srq_alloc()
185 if (IS_ERR(mailbox)) { in mlx4_srq_alloc()
[all …]
Dfw.c147 struct mlx4_cmd_mailbox *mailbox; in mlx4_MOD_STAT_CFG() local
156 mailbox = mlx4_alloc_cmd_mailbox(dev); in mlx4_MOD_STAT_CFG()
157 if (IS_ERR(mailbox)) in mlx4_MOD_STAT_CFG()
158 return PTR_ERR(mailbox); in mlx4_MOD_STAT_CFG()
159 inbox = mailbox->buf; in mlx4_MOD_STAT_CFG()
166 err = mlx4_cmd(dev, mailbox->dma, 0, 0, MLX4_CMD_MOD_STAT_CFG, in mlx4_MOD_STAT_CFG()
169 mlx4_free_cmd_mailbox(dev, mailbox); in mlx4_MOD_STAT_CFG()
285 struct mlx4_cmd_mailbox *mailbox; in mlx4_QUERY_FUNC_CAP() local
293 mailbox = mlx4_alloc_cmd_mailbox(dev); in mlx4_QUERY_FUNC_CAP()
294 if (IS_ERR(mailbox)) in mlx4_QUERY_FUNC_CAP()
[all …]
Dmr.c286 static int mlx4_SW2HW_MPT(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox, in mlx4_SW2HW_MPT() argument
289 return mlx4_cmd(dev, mailbox->dma, mpt_index, in mlx4_SW2HW_MPT()
294 static int mlx4_HW2SW_MPT(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox, in mlx4_HW2SW_MPT() argument
297 return mlx4_cmd_box(dev, 0, mailbox ? mailbox->dma : 0, mpt_index, in mlx4_HW2SW_MPT()
298 !mailbox, MLX4_CMD_HW2SW_MPT, in mlx4_HW2SW_MPT()
317 struct mlx4_cmd_mailbox *mailbox, in mlx4_WRITE_MTT() argument
320 return mlx4_cmd(dev, mailbox->dma, num_entries, 0, MLX4_CMD_WRITE_MTT, in mlx4_WRITE_MTT()
469 struct mlx4_cmd_mailbox *mailbox; in mlx4_mr_enable() local
477 mailbox = mlx4_alloc_cmd_mailbox(dev); in mlx4_mr_enable()
478 if (IS_ERR(mailbox)) { in mlx4_mr_enable()
[all …]
Dqp.c131 struct mlx4_cmd_mailbox *mailbox; in __mlx4_qp_modify() local
156 mailbox = mlx4_alloc_cmd_mailbox(dev); in __mlx4_qp_modify()
157 if (IS_ERR(mailbox)) in __mlx4_qp_modify()
158 return PTR_ERR(mailbox); in __mlx4_qp_modify()
167 *(__be32 *) mailbox->buf = cpu_to_be32(optpar); in __mlx4_qp_modify()
168 memcpy(mailbox->buf + 8, context, sizeof *context); in __mlx4_qp_modify()
170 ((struct mlx4_qp_context *) (mailbox->buf + 8))->local_qpn = in __mlx4_qp_modify()
173 ret = mlx4_cmd(dev, mailbox->dma, in __mlx4_qp_modify()
195 mlx4_free_cmd_mailbox(dev, mailbox); in __mlx4_qp_modify()
545 struct mlx4_cmd_mailbox *mailbox; in mlx4_qp_query() local
[all …]
Deq.c799 static int mlx4_SW2HW_EQ(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox, in mlx4_SW2HW_EQ() argument
802 return mlx4_cmd(dev, mailbox->dma, eq_num, 0, in mlx4_SW2HW_EQ()
807 static int mlx4_HW2SW_EQ(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox, in mlx4_HW2SW_EQ() argument
810 return mlx4_cmd_box(dev, 0, mailbox->dma, eq_num, in mlx4_HW2SW_EQ()
864 struct mlx4_cmd_mailbox *mailbox; in mlx4_create_eq() local
890 mailbox = mlx4_alloc_cmd_mailbox(dev); in mlx4_create_eq()
891 if (IS_ERR(mailbox)) in mlx4_create_eq()
893 eq_context = mailbox->buf; in mlx4_create_eq()
936 err = mlx4_SW2HW_EQ(dev, mailbox, eq->eqn); in mlx4_create_eq()
943 mlx4_free_cmd_mailbox(dev, mailbox); in mlx4_create_eq()
[all …]
Dcmd.c2041 struct mlx4_cmd_mailbox *mailbox; in mlx4_alloc_cmd_mailbox() local
2043 mailbox = kmalloc(sizeof *mailbox, GFP_KERNEL); in mlx4_alloc_cmd_mailbox()
2044 if (!mailbox) in mlx4_alloc_cmd_mailbox()
2047 mailbox->buf = pci_pool_alloc(mlx4_priv(dev)->cmd.pool, GFP_KERNEL, in mlx4_alloc_cmd_mailbox()
2048 &mailbox->dma); in mlx4_alloc_cmd_mailbox()
2049 if (!mailbox->buf) { in mlx4_alloc_cmd_mailbox()
2050 kfree(mailbox); in mlx4_alloc_cmd_mailbox()
2054 return mailbox; in mlx4_alloc_cmd_mailbox()
2059 struct mlx4_cmd_mailbox *mailbox) in mlx4_free_cmd_mailbox() argument
2061 if (!mailbox) in mlx4_free_cmd_mailbox()
[all …]
/drivers/net/appletalk/
Dltpc.h20 unsigned char mailbox; member
25 unsigned char mailbox; member
32 unsigned char mailbox; member
38 unsigned char mailbox; member
43 unsigned char mailbox; member
49 unsigned char mailbox; member
Dltpc.c277 unsigned char mailbox; member
332 static unsigned char mailbox[16]; variable
550 qels[0].mailbox = 0; in idle()
575 ltdmacbuf[1] = q->mailbox; in idle()
599 qels[0].mailbox = 0; in idle()
618 if(q->mailbox) { in idle()
622 mailbox[ 0x0f & ltdmabuf[0] ] = ltdmabuf[1]; in idle()
659 qels[i].mailbox = i; /* this should be initted rather */ in do_write()
662 ret = mailbox[i]; in do_write()
683 qels[i].mailbox = i; /* this should be initted rather */ in do_read()
[all …]
/drivers/char/
Dapplicom.c363 struct mailbox tmpmailbox; in ac_write()
369 if (count != sizeof(struct st_ram_io) + sizeof(struct mailbox)) { in ac_write()
373 count, sizeof(struct st_ram_io) + sizeof(struct mailbox)); in ac_write()
383 sizeof(struct mailbox))) in ac_write()
408 for (c = 0; c < sizeof(struct mailbox);) { in ac_write()
411 for (c++; c % 8 && c < sizeof(struct mailbox); c++) { in ac_write()
465 for (c = 0; c < sizeof(struct mailbox); c++) in ac_write()
481 struct st_ram_io *st_loc, struct mailbox *mailbox) in do_ac_read() argument
484 unsigned char *to = (unsigned char *)mailbox; in do_ac_read()
496 for (c = 0; c < sizeof(struct mailbox); c++) in do_ac_read()
[all …]
/drivers/infiniband/hw/mlx4/
Dmain.c302 struct mlx4_cmd_mailbox *mailbox; in eth_link_query_port() local
305 mailbox = mlx4_alloc_cmd_mailbox(mdev->dev); in eth_link_query_port()
306 if (IS_ERR(mailbox)) in eth_link_query_port()
307 return PTR_ERR(mailbox); in eth_link_query_port()
309 err = mlx4_cmd_box(mdev->dev, 0, mailbox->dma, port, 0, in eth_link_query_port()
315 props->active_width = (((u8 *)mailbox->buf)[5] == 0x40) ? in eth_link_query_port()
341 mlx4_free_cmd_mailbox(mdev->dev, mailbox); in eth_link_query_port()
482 struct mlx4_cmd_mailbox *mailbox; in mlx4_ib_modify_device() local
502 mailbox = mlx4_alloc_cmd_mailbox(to_mdev(ibdev)->dev); in mlx4_ib_modify_device()
503 if (IS_ERR(mailbox)) in mlx4_ib_modify_device()
[all …]
/drivers/media/pci/cx88/
Dcx88-blackbird.c326 memory_read(dev->core, dev->mailbox - 4, &value); in blackbird_mbox_func()
332 memory_read(dev->core, dev->mailbox, &flag); in blackbird_mbox_func()
339 memory_write(dev->core, dev->mailbox, flag); in blackbird_mbox_func()
342 memory_write(dev->core, dev->mailbox + 1, command); /* command code */ in blackbird_mbox_func()
343 memory_write(dev->core, dev->mailbox + 3, IVTV_API_STD_TIMEOUT); /* timeout */ in blackbird_mbox_func()
345 memory_write(dev->core, dev->mailbox + 4 + i, data[i]); in blackbird_mbox_func()
349 memory_write(dev->core, dev->mailbox + 4 + i, 0); in blackbird_mbox_func()
352 memory_write(dev->core, dev->mailbox, flag); in blackbird_mbox_func()
357 memory_read(dev->core, dev->mailbox, &flag); in blackbird_mbox_func()
369 memory_read(dev->core, dev->mailbox + 4 + i, data + i); in blackbird_mbox_func()
[all …]
/drivers/scsi/
Dqla1280.c3427 uint16_t mailbox[MAILBOX_REGISTER_COUNT]; in qla1280_isr() local
3439 mailbox[5] = RD_REG_WORD(&reg->mailbox5); in qla1280_isr()
3443 mailbox[0] = RD_REG_WORD_dmasync(&reg->semaphore); in qla1280_isr()
3445 if (mailbox[0] & BIT_0) { in qla1280_isr()
3449 wptr = &mailbox[0]; in qla1280_isr()
3453 if (mailbox[0] != MBA_SCSI_COMPLETION) { in qla1280_isr()
3468 mailbox[0]); in qla1280_isr()
3471 switch (mailbox[0]) { in qla1280_isr()
3478 index = mailbox[2] << 16 | mailbox[1]; in qla1280_isr()
3508 index = mailbox[6] & BIT_0; in qla1280_isr()
[all …]
/drivers/tty/
Dcyclades.c121 u32 mailbox; member
3434 const char *name, const u32 mailbox, void __iomem *base, in __cyz_load_fw() argument
3475 if (c->mailbox == mailbox && c->function == 0) /* 0 is normal */ in __cyz_load_fw()
3491 if (c->mailbox == mailbox && c->function == 0) in __cyz_load_fw()
3518 u32 mailbox, status, nchan; in cyz_load_fw() local
3547 mailbox = readl(&ctl_addr->mail_box_0); in cyz_load_fw()
3549 if (mailbox == 0 || __cyz_fpga_loaded(ctl_addr)) { in cyz_load_fw()
3559 if (mailbox != 0) { in cyz_load_fw()
3561 retval = __cyz_load_fw(fw, "Cyclom-Z", mailbox, NULL, in cyz_load_fw()
3581 if (mailbox != 0) { in cyz_load_fw()
[all …]

12