nvme.h: Correct an incorrect comment for AER

AER means asynchronous event request.

Change-Id: I8f661cc5e9ef217764495e8c22717e1446b9d315
Signed-off-by: wanghailiangx <hailiangx.e.wang@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/13017
Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com>
Community-CI: Mellanox Build Bot
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Changpeng Liu <changpeng.liu@intel.com>
Reviewed-by: Shuhei Matsumoto <smatsumoto@nvidia.com>
This commit is contained in:
wanghailiangx 2022-06-12 06:37:31 -04:00 committed by Tomasz Zawadzki
parent 99919377d7
commit 418286df73

View File

@ -1340,7 +1340,7 @@ bool spdk_nvme_ctrlr_is_feature_supported(struct spdk_nvme_ctrlr *ctrlr, uint8_t
typedef void (*spdk_nvme_cmd_cb)(void *ctx, const struct spdk_nvme_cpl *cpl);
/**
* Signature for callback function invoked when an asynchronous error request
* Signature for callback function invoked when an asynchronous event request
* command is completed.
*
* \param aer_cb_arg Context specified by spdk_nvme_register_aer_callback().
@ -1355,7 +1355,7 @@ typedef void (*spdk_nvme_aer_cb)(void *aer_cb_arg,
* given NVMe controller.
*
* \param ctrlr Opaque handle to NVMe controller.
* \param aer_cb_fn Callback function invoked when an asynchronous error request
* \param aer_cb_fn Callback function invoked when an asynchronous event request
* command is completed.
* \param aer_cb_arg Argument passed to callback function.
*/