There is no non __-prefixed version, so make the name a little more
readable.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Keith Busch <kbusch@kernel.org>
        NULL,
 };
 
-static struct nvme_ns_head *__nvme_find_ns_head(struct nvme_subsystem *subsys,
+static struct nvme_ns_head *nvme_find_ns_head(struct nvme_subsystem *subsys,
                unsigned nsid)
 {
        struct nvme_ns_head *h;
 
        mutex_lock(&ctrl->subsys->lock);
        if (is_shared)
-               head = __nvme_find_ns_head(ctrl->subsys, nsid);
+               head = nvme_find_ns_head(ctrl->subsys, nsid);
        if (!head) {
                head = nvme_alloc_ns_head(ctrl, nsid, id);
                if (IS_ERR(head)) {