ioat: fix "XFCERCAP" typo in comment

Change-Id: I9e7ff07de8b06afb45b1059d455c8fe854035640
Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
Reviewed-on: https://review.gerrithub.io/417783
Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Changpeng Liu <changpeng.liu@intel.com>
This commit is contained in:
Daniel Verkamp 2018-07-03 10:24:39 -07:00 committed by Changpeng Liu
parent 32f35c169e
commit 5aa5f3dc22

View File

@ -398,7 +398,7 @@ ioat_channel_start(struct spdk_ioat_chan *ioat)
/* 0 means 4 GB max transfer size. */ /* 0 means 4 GB max transfer size. */
ioat->max_xfer_size = 1ULL << 32; ioat->max_xfer_size = 1ULL << 32;
} else if (xfercap < 12) { } else if (xfercap < 12) {
/* XFCERCAP must be at least 12 (4 KB) according to the spec. */ /* XFERCAP must be at least 12 (4 KB) according to the spec. */
SPDK_ERRLOG("invalid XFERCAP value %u\n", xfercap); SPDK_ERRLOG("invalid XFERCAP value %u\n", xfercap);
return -1; return -1;
} else { } else {