From: Steven Seungcheol Lee Date: Mon, 6 Mar 2023 06:37:10 +0000 (+0900) Subject: doc: fix kernel-doc-check warning X-Git-Tag: v1.4~26 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=ed5d25b3223197c5ad1f8823fa9d036ec6d102c5;p=users%2Fsagi%2Flibnvme.git doc: fix kernel-doc-check warning src/nvme/api-types.h:815: warning: Function parameter or member 'mos' not described in 'nvme_io_mgmt_recv_args' src/nvme/api-types.h:815: warning: Function parameter or member 'mo' not described in 'nvme_io_mgmt_recv_args' src/nvme/api-types.h:837: warning: Function parameter or member 'mos' not described in 'nvme_io_mgmt_send_args' src/nvme/api-types.h:837: warning: Function parameter or member 'mo' not described in 'nvme_io_mgmt_send_args' Signed-off-by: Steven Seungcheol Lee --- diff --git a/src/nvme/api-types.h b/src/nvme/api-types.h index dac50ae0..9f3604ee 100644 --- a/src/nvme/api-types.h +++ b/src/nvme/api-types.h @@ -800,8 +800,8 @@ struct nvme_resv_report_args { * @nsid: Namespace identifier * @data_len: Length of @data * @timeout: Timeout in ms - * @mos Management Operation Specific - * @mo Management Operation + * @mos: Management Operation Specific + * @mo: Management Operation */ struct nvme_io_mgmt_recv_args { void *data; @@ -822,8 +822,8 @@ struct nvme_io_mgmt_recv_args { * @nsid: Namespace identifier * @data_len: Length of @data * @timeout: Timeout in ms - * @mos Management Operation Specific - * @mo Management Operation + * @mos: Management Operation Specific + * @mo: Management Operation */ struct nvme_io_mgmt_send_args { void *data;