From 8458c85c3ce7bf8298f69bf0ee90d012a2264a6d Mon Sep 17 00:00:00 2001 From: Seth Howell Date: Thu, 12 Dec 2019 15:51:10 -0700 Subject: [PATCH] nvmf/transport: remove second declaration of opts_init This function is already declared in the public header which this function includes. Change-Id: Iff3f85dc166b7bd4d949b9b099a6bf05dec7dec8 Signed-off-by: Seth Howell Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/477868 Community-CI: Broadcom SPDK FC-NVMe CI Community-CI: SPDK CI Jenkins Tested-by: SPDK CI Jenkins Reviewed-by: Jim Harris Reviewed-by: Alexey Marchuk --- lib/nvmf/transport.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/nvmf/transport.h b/lib/nvmf/transport.h index 57ef9493d..0ec3f6d7c 100644 --- a/lib/nvmf/transport.h +++ b/lib/nvmf/transport.h @@ -91,9 +91,6 @@ int spdk_nvmf_transport_qpair_get_listen_trid(struct spdk_nvmf_qpair *qpair, struct spdk_nvme_transport_id *trid); int spdk_nvmf_transport_qpair_set_sqsize(struct spdk_nvmf_qpair *qpair); -bool spdk_nvmf_transport_opts_init(enum spdk_nvme_transport_type type, - struct spdk_nvmf_transport_opts *opts); - extern const struct spdk_nvmf_transport_ops spdk_nvmf_transport_rdma; extern const struct spdk_nvmf_transport_ops spdk_nvmf_transport_tcp; extern const struct spdk_nvmf_transport_ops spdk_nvmf_transport_fc;