From 7bd558ab3bf64a1bda23d5a020df1a6750407b69 Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Fri, 26 Aug 2016 09:23:49 -0700 Subject: [PATCH] nvme/identify: fix spacing of SGL features Change-Id: I0ec6a6851fe33b93e2fc41adfd9c8cba4c3ab8fd Signed-off-by: Daniel Verkamp --- examples/nvme/identify/identify.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/nvme/identify/identify.c b/examples/nvme/identify/identify.c index 3145a635f..cd3645e89 100644 --- a/examples/nvme/identify/identify.c +++ b/examples/nvme/identify/identify.c @@ -590,7 +590,7 @@ print_controller(struct spdk_nvme_ctrlr *ctrlr, struct spdk_pci_device *pci_dev) printf("Scatter-Gather List\n"); printf(" SGL Command Set: %s\n", cdata->sgls.supported ? "Supported" : "Not Supported"); - printf(" SGL Keyed: %s\n", + printf(" SGL Keyed: %s\n", cdata->sgls.keyed_sgl ? "Supported" : "Not Supported"); printf(" SGL Bit Bucket Descriptor: %s\n", cdata->sgls.bit_bucket_descriptor ? "Supported" : "Not Supported"); @@ -598,9 +598,9 @@ print_controller(struct spdk_nvme_ctrlr *ctrlr, struct spdk_pci_device *pci_dev) cdata->sgls.metadata_pointer ? "Supported" : "Not Supported"); printf(" Oversized SGL: %s\n", cdata->sgls.oversized_sgl ? "Supported" : "Not Supported"); - printf(" SGL Metadata Address: %s\n", + printf(" SGL Metadata Address: %s\n", cdata->sgls.metadata_address ? "Supported" : "Not Supported"); - printf(" SGL Offset: %s\n", + printf(" SGL Offset: %s\n", cdata->sgls.sgl_offset ? "Supported" : "Not Supported"); printf("\n");