nvmet: Fix nvmet_is_port_enabled indentation
authorIsrael Rukshin <israelr@nvidia.com>
Thu, 7 Jan 2021 15:34:14 +0000 (17:34 +0200)
committerChristoph Hellwig <hch@lst.de>
Tue, 2 Feb 2021 09:26:10 +0000 (10:26 +0100)
Remove extra tab.

Signed-off-by: Israel Rukshin <israelr@nvidia.com>
Reviewed-by: Max Gurtovoy <mgurtovoy@nvidia.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
drivers/nvme/target/configfs.c

index b2021bf..635a7cb 100644 (file)
@@ -45,7 +45,7 @@ static bool nvmet_is_port_enabled(struct nvmet_port *p, const char *caller)
 {
        if (p->enabled)
                pr_err("Disable port '%u' before changing attribute in %s\n",
-                               le16_to_cpu(p->disc_addr.portid), caller);
+                      le16_to_cpu(p->disc_addr.portid), caller);
        return p->enabled;
 }