Commit 6721c18a authored by Israel Rukshin's avatar Israel Rukshin Committed by Keith Busch

nvme: Remove unused return code from nvme_delete_ctrl_sync

The return code of nvme_delete_ctrl_sync is never used, so change it to
void.
Signed-off-by: default avatarIsrael Rukshin <israelr@mellanox.com>
Reviewed-by: default avatarMax Gurtovoy <maxg@mellanox.com>
Reviewed-by: default avatarSagi Grimberg <sagi@grimberg.me>
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarKeith Busch <kbusch@kernel.org>
parent e7c43fea
...@@ -192,21 +192,16 @@ int nvme_delete_ctrl(struct nvme_ctrl *ctrl) ...@@ -192,21 +192,16 @@ int nvme_delete_ctrl(struct nvme_ctrl *ctrl)
} }
EXPORT_SYMBOL_GPL(nvme_delete_ctrl); EXPORT_SYMBOL_GPL(nvme_delete_ctrl);
static int nvme_delete_ctrl_sync(struct nvme_ctrl *ctrl) static void nvme_delete_ctrl_sync(struct nvme_ctrl *ctrl)
{ {
int ret = 0;
/* /*
* Keep a reference until nvme_do_delete_ctrl() complete, * Keep a reference until nvme_do_delete_ctrl() complete,
* since ->delete_ctrl can free the controller. * since ->delete_ctrl can free the controller.
*/ */
nvme_get_ctrl(ctrl); nvme_get_ctrl(ctrl);
if (!nvme_change_ctrl_state(ctrl, NVME_CTRL_DELETING)) if (nvme_change_ctrl_state(ctrl, NVME_CTRL_DELETING))
ret = -EBUSY;
if (!ret)
nvme_do_delete_ctrl(ctrl); nvme_do_delete_ctrl(ctrl);
nvme_put_ctrl(ctrl); nvme_put_ctrl(ctrl);
return ret;
} }
static inline bool nvme_ns_has_pi(struct nvme_ns *ns) static inline bool nvme_ns_has_pi(struct nvme_ns *ns)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment