diff options
author | Alexander Usyskin <alexander.usyskin@intel.com> | 2015-02-10 03:39:35 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-03-01 22:36:59 -0500 |
commit | 3908be6f9aa5517bc717f8ffdaaafd89a1b78471 (patch) | |
tree | e646bcf08ea53cd1336bd13dc4fe0bd8d7d419b2 /drivers/misc/mei/client.c | |
parent | 2d1995fce3f9b9a0bdb88d47144509e3b84db0f9 (diff) |
mei: fix function names and format in KDoc
Align functions names in KDoc with real ones.
Fix comment format to be KDoc and fix wrong syntax there.
Signed-off-by: Alexander Usyskin <alexander.usyskin@intel.com>
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/mei/client.c')
-rw-r--r-- | drivers/misc/mei/client.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/drivers/misc/mei/client.c b/drivers/misc/mei/client.c index 48813c27a47c..3e9cf0db5540 100644 --- a/drivers/misc/mei/client.c +++ b/drivers/misc/mei/client.c | |||
@@ -321,7 +321,7 @@ static inline bool mei_cl_cmp_id(const struct mei_cl *cl1, | |||
321 | } | 321 | } |
322 | 322 | ||
323 | /** | 323 | /** |
324 | * mei_io_list_flush - removes cbs belonging to cl. | 324 | * __mei_io_list_flush - removes and frees cbs belonging to cl. |
325 | * | 325 | * |
326 | * @list: an instance of our list structure | 326 | * @list: an instance of our list structure |
327 | * @cl: host client, can be NULL for flushing the whole list | 327 | * @cl: host client, can be NULL for flushing the whole list |
@@ -540,10 +540,11 @@ struct mei_cl_cb *mei_cl_find_read_cb(struct mei_cl *cl) | |||
540 | return NULL; | 540 | return NULL; |
541 | } | 541 | } |
542 | 542 | ||
543 | /** mei_cl_link: allocate host id in the host map | 543 | /** |
544 | * mei_cl_link - allocate host id in the host map | ||
544 | * | 545 | * |
545 | * @cl - host client | 546 | * @cl: host client |
546 | * @id - fixed host id or -1 for generic one | 547 | * @id: fixed host id or -1 for generic one |
547 | * | 548 | * |
548 | * Return: 0 on success | 549 | * Return: 0 on success |
549 | * -EINVAL on incorrect values | 550 | * -EINVAL on incorrect values |