diff options
author | Matthew Wilcox <matthew.r.wilcox@intel.com> | 2011-03-16 16:28:24 -0400 |
---|---|---|
committer | Matthew Wilcox <matthew.r.wilcox@intel.com> | 2011-11-04 15:53:00 -0400 |
commit | 714a7a22884b74862540bc84955274d86b2f6040 (patch) | |
tree | 20a690339e2df67315759bb922522c06425aa281 /drivers/block | |
parent | 2ddc4f74d8adcf3e1cdec7f3e72d19b5c878597c (diff) |
NVMe: Convert comments to kernel-doc notation
Reported-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Matthew Wilcox <matthew.r.wilcox@intel.com>
Diffstat (limited to 'drivers/block')
-rw-r--r-- | drivers/block/nvme.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/block/nvme.c b/drivers/block/nvme.c index a8549dff4691..e392919e0eac 100644 --- a/drivers/block/nvme.c +++ b/drivers/block/nvme.c | |||
@@ -142,10 +142,10 @@ static struct nvme_cmd_info *nvme_cmd_info(struct nvme_queue *nvmeq) | |||
142 | } | 142 | } |
143 | 143 | ||
144 | /** | 144 | /** |
145 | * alloc_cmdid - Allocate a Command ID | 145 | * alloc_cmdid() - Allocate a Command ID |
146 | * @param nvmeq The queue that will be used for this command | 146 | * @nvmeq: The queue that will be used for this command |
147 | * @param ctx A pointer that will be passed to the handler | 147 | * @ctx: A pointer that will be passed to the handler |
148 | * @param handler The ID of the handler to call | 148 | * @handler: The ID of the handler to call |
149 | * | 149 | * |
150 | * Allocate a Command ID for a queue. The data passed in will | 150 | * Allocate a Command ID for a queue. The data passed in will |
151 | * be passed to the completion handler. This is implemented by using | 151 | * be passed to the completion handler. This is implemented by using |
@@ -234,7 +234,7 @@ static void put_nvmeq(struct nvme_queue *nvmeq) | |||
234 | } | 234 | } |
235 | 235 | ||
236 | /** | 236 | /** |
237 | * nvme_submit_cmd: Copy a command into a queue and ring the doorbell | 237 | * nvme_submit_cmd() - Copy a command into a queue and ring the doorbell |
238 | * @nvmeq: The queue to use | 238 | * @nvmeq: The queue to use |
239 | * @cmd: The command to send | 239 | * @cmd: The command to send |
240 | * | 240 | * |