diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2013-01-08 16:07:14 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-08 19:40:44 -0500 |
commit | 90e0b5f18569bdd03c5ddd1d8c99946f42af77b8 (patch) | |
tree | 2d70ede445345397032a92fe9f5e24eb8d3c4981 /drivers/misc/mei/mei_dev.h | |
parent | 9ca9050b3df690d9d44e39424ab2a531120af936 (diff) |
mei: fix client functions names
Use common prefix for function names:
mei_cl_ - for host clients
mei_me_ - for me clients
mei_io_ - for io callback functions
Because mei_cl holds mei_device back pointer
we can also drop the dev argument from the client
functions
add client.h header to export the clients API
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/mei/mei_dev.h')
-rw-r--r-- | drivers/misc/mei/mei_dev.h | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/drivers/misc/mei/mei_dev.h b/drivers/misc/mei/mei_dev.h index 1b54e675d3f1..5a1ac9a37e10 100644 --- a/drivers/misc/mei/mei_dev.h +++ b/drivers/misc/mei/mei_dev.h | |||
@@ -329,59 +329,9 @@ void mei_reset(struct mei_device *dev, int interrupts); | |||
329 | int mei_hw_init(struct mei_device *dev); | 329 | int mei_hw_init(struct mei_device *dev); |
330 | int mei_task_initialize_clients(void *data); | 330 | int mei_task_initialize_clients(void *data); |
331 | int mei_initialize_clients(struct mei_device *dev); | 331 | int mei_initialize_clients(struct mei_device *dev); |
332 | int mei_disconnect_host_client(struct mei_device *dev, struct mei_cl *cl); | ||
333 | void mei_allocate_me_clients_storage(struct mei_device *dev); | 332 | void mei_allocate_me_clients_storage(struct mei_device *dev); |
334 | 333 | ||
335 | 334 | ||
336 | int mei_me_cl_link(struct mei_device *dev, struct mei_cl *cl, | ||
337 | const uuid_le *cguid, u8 host_client_id); | ||
338 | void mei_me_cl_unlink(struct mei_device *dev, struct mei_cl *cl); | ||
339 | int mei_me_cl_by_uuid(const struct mei_device *dev, const uuid_le *cuuid); | ||
340 | int mei_me_cl_by_id(struct mei_device *dev, u8 client_id); | ||
341 | |||
342 | /* | ||
343 | * MEI IO Functions | ||
344 | */ | ||
345 | struct mei_cl_cb *mei_io_cb_init(struct mei_cl *cl, struct file *fp); | ||
346 | void mei_io_cb_free(struct mei_cl_cb *priv_cb); | ||
347 | int mei_io_cb_alloc_req_buf(struct mei_cl_cb *cb, size_t length); | ||
348 | int mei_io_cb_alloc_resp_buf(struct mei_cl_cb *cb, size_t length); | ||
349 | |||
350 | |||
351 | /** | ||
352 | * mei_io_list_init - Sets up a queue list. | ||
353 | * | ||
354 | * @list: An instance cl callback structure | ||
355 | */ | ||
356 | static inline void mei_io_list_init(struct mei_cl_cb *list) | ||
357 | { | ||
358 | INIT_LIST_HEAD(&list->list); | ||
359 | } | ||
360 | void mei_io_list_flush(struct mei_cl_cb *list, struct mei_cl *cl); | ||
361 | |||
362 | /* | ||
363 | * MEI ME Client Functions | ||
364 | */ | ||
365 | |||
366 | struct mei_cl *mei_cl_allocate(struct mei_device *dev); | ||
367 | void mei_cl_init(struct mei_cl *cl, struct mei_device *dev); | ||
368 | int mei_cl_flush_queues(struct mei_cl *cl); | ||
369 | /** | ||
370 | * mei_cl_cmp_id - tells if file private data have same id | ||
371 | * | ||
372 | * @fe1: private data of 1. file object | ||
373 | * @fe2: private data of 2. file object | ||
374 | * | ||
375 | * returns true - if ids are the same and not NULL | ||
376 | */ | ||
377 | static inline bool mei_cl_cmp_id(const struct mei_cl *cl1, | ||
378 | const struct mei_cl *cl2) | ||
379 | { | ||
380 | return cl1 && cl2 && | ||
381 | (cl1->host_client_id == cl2->host_client_id) && | ||
382 | (cl1->me_client_id == cl2->me_client_id); | ||
383 | } | ||
384 | |||
385 | 335 | ||
386 | /* | 336 | /* |
387 | * MEI interrupt functions prototype | 337 | * MEI interrupt functions prototype |
@@ -395,9 +345,6 @@ void mei_timer(struct work_struct *work); | |||
395 | */ | 345 | */ |
396 | int mei_ioctl_connect_client(struct file *file, | 346 | int mei_ioctl_connect_client(struct file *file, |
397 | struct mei_connect_client_data *data); | 347 | struct mei_connect_client_data *data); |
398 | |||
399 | int mei_start_read(struct mei_device *dev, struct mei_cl *cl); | ||
400 | |||
401 | /* | 348 | /* |
402 | * AMTHIF - AMT Host Interface Functions | 349 | * AMTHIF - AMT Host Interface Functions |
403 | */ | 350 | */ |