Lines Matching refs:me_cl
346 struct mei_me_client *me_cl; in mei_hbm_me_cl_add() local
351 me_cl = kzalloc(sizeof(struct mei_me_client), GFP_KERNEL); in mei_hbm_me_cl_add()
352 if (!me_cl) in mei_hbm_me_cl_add()
355 mei_me_cl_init(me_cl); in mei_hbm_me_cl_add()
357 me_cl->props = res->client_properties; in mei_hbm_me_cl_add()
358 me_cl->client_id = res->me_addr; in mei_hbm_me_cl_add()
359 me_cl->tx_flow_ctrl_creds = 0; in mei_hbm_me_cl_add()
361 mei_me_cl_add(dev, me_cl); in mei_hbm_me_cl_add()
667 struct mei_me_client *me_cl; in mei_hbm_add_single_tx_flow_ctrl_creds() local
670 me_cl = mei_me_cl_by_id(dev, fctrl->me_addr); in mei_hbm_add_single_tx_flow_ctrl_creds()
671 if (!me_cl) { in mei_hbm_add_single_tx_flow_ctrl_creds()
676 if (WARN_ON(me_cl->props.single_recv_buf == 0)) { in mei_hbm_add_single_tx_flow_ctrl_creds()
681 me_cl->tx_flow_ctrl_creds++; in mei_hbm_add_single_tx_flow_ctrl_creds()
683 fctrl->me_addr, me_cl->tx_flow_ctrl_creds); in mei_hbm_add_single_tx_flow_ctrl_creds()
687 mei_me_cl_put(me_cl); in mei_hbm_add_single_tx_flow_ctrl_creds()
808 mei_me_cl_del(dev, cl->me_cl); in mei_hbm_cl_connect_res()