Lines Matching refs:me_cl
403 struct mei_me_client *me_cl; in mei_hbm_me_cl_add() local
408 me_cl = kzalloc(sizeof(*me_cl), GFP_KERNEL); in mei_hbm_me_cl_add()
409 if (!me_cl) in mei_hbm_me_cl_add()
412 mei_me_cl_init(me_cl); in mei_hbm_me_cl_add()
414 me_cl->props = res->client_properties; in mei_hbm_me_cl_add()
415 me_cl->client_id = res->me_addr; in mei_hbm_me_cl_add()
416 me_cl->tx_flow_ctrl_creds = 0; in mei_hbm_me_cl_add()
418 mei_me_cl_add(dev, me_cl); in mei_hbm_me_cl_add()
718 struct mei_me_client *me_cl; in mei_hbm_add_single_tx_flow_ctrl_creds() local
721 me_cl = mei_me_cl_by_id(dev, fctrl->me_addr); in mei_hbm_add_single_tx_flow_ctrl_creds()
722 if (!me_cl) { in mei_hbm_add_single_tx_flow_ctrl_creds()
727 if (WARN_ON(me_cl->props.single_recv_buf == 0)) { in mei_hbm_add_single_tx_flow_ctrl_creds()
732 me_cl->tx_flow_ctrl_creds++; in mei_hbm_add_single_tx_flow_ctrl_creds()
734 fctrl->me_addr, me_cl->tx_flow_ctrl_creds); in mei_hbm_add_single_tx_flow_ctrl_creds()
738 mei_me_cl_put(me_cl); in mei_hbm_add_single_tx_flow_ctrl_creds()
859 mei_me_cl_del(dev, cl->me_cl); in mei_hbm_cl_connect_res()