Searched defs:me_cl (Results 1 - 8 of 8) sorted by relevance

/drivers/misc/mei/
H A Ddebugfs.c30 struct mei_me_client *me_cl; local
41 list_for_each_entry(me_cl, &dev->me_clients, list)
57 list_for_each_entry(me_cl, &dev->me_clients, list) {
60 if (me_cl->props.max_number_of_connections == 0)
65 i++, me_cl->client_id,
66 me_cl->props.fixed_address,
67 &me_cl->props.protocol_name,
68 me_cl->props.max_number_of_connections,
69 me_cl->props.max_msg_length,
70 me_cl
[all...]
H A Dwd.c61 struct mei_me_client *me_cl; local
71 me_cl = mei_me_cl_by_uuid(dev, &mei_wd_guid);
72 if (!me_cl) {
77 cl->me_client_id = me_cl->client_id;
78 cl->cl_uuid = me_cl->props.protocol_name;
H A Damthif.c72 struct mei_me_client *me_cl; local
80 me_cl = mei_me_cl_by_uuid(dev, &mei_amthif_guid);
81 if (!me_cl) {
86 cl->me_client_id = me_cl->client_id;
87 cl->cl_uuid = me_cl->props.protocol_name;
91 dev->iamthif_mtu = me_cl->props.max_msg_length;
H A Dbus.c231 struct mei_me_client *me_cl; local
244 me_cl = mei_me_cl_by_uuid_id(dev, &cl->cl_uuid, cl->me_client_id);
245 if (!me_cl)
248 if (length > me_cl->props.max_msg_length)
H A Dclient.c42 struct mei_me_client *me_cl; local
44 list_for_each_entry(me_cl, &dev->me_clients, list)
45 if (uuid_le_cmp(*uuid, me_cl->props.protocol_name) == 0)
46 return me_cl;
64 struct mei_me_client *me_cl; local
66 list_for_each_entry(me_cl, &dev->me_clients, list)
67 if (me_cl->client_id == client_id)
68 return me_cl;
86 struct mei_me_client *me_cl; local
88 list_for_each_entry(me_cl,
104 struct mei_me_client *me_cl, *next; local
445 struct mei_me_client *me_cl; local
697 struct mei_me_client *me_cl; local
734 struct mei_me_client *me_cl; local
771 struct mei_me_client *me_cl; local
[all...]
H A Dmain.c306 struct mei_me_client *me_cl; local
324 me_cl = mei_me_cl_by_uuid_id(dev, &cl->cl_uuid, cl->me_client_id);
325 if (!me_cl) {
335 if (length > me_cl->props.max_msg_length) {
429 struct mei_me_client *me_cl; local
448 me_cl = mei_me_cl_by_uuid(dev, &data->in_client_uuid);
449 if (!me_cl || me_cl->props.fixed_address) {
456 cl->me_client_id = me_cl->client_id;
457 cl->cl_uuid = me_cl
[all...]
H A Dhbm.c114 struct mei_me_client *me_cl, *next; local
116 list_for_each_entry_safe(me_cl, next, &dev->me_clients, list) {
117 list_del(&me_cl->list);
118 kfree(me_cl);
341 struct mei_me_client *me_cl; local
343 me_cl = kzalloc(sizeof(struct mei_me_client), GFP_KERNEL);
344 if (!me_cl)
347 me_cl->props = res->client_properties;
348 me_cl->client_id = res->me_addr;
349 me_cl
486 struct mei_me_client *me_cl; local
[all...]
H A Dnfc.c484 struct mei_me_client *me_cl; local
503 me_cl = mei_me_cl_by_uuid(dev, &mei_nfc_info_guid);
504 if (!me_cl) {
510 cl_info->me_client_id = me_cl->client_id;
511 cl_info->cl_uuid = me_cl->props.protocol_name;
521 me_cl = mei_me_cl_by_uuid(dev, &mei_nfc_guid);
522 if (!me_cl) {
528 cl->me_client_id = me_cl->client_id;
529 cl->cl_uuid = me_cl->props.protocol_name;

Completed in 75 milliseconds