summaryrefslogtreecommitdiff
path: root/drivers/nvme/host/constants.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2022-07-18 07:07:26 +0200
committerJens Axboe <axboe@kernel.dk>2022-08-02 17:22:48 -0600
commiteb7e2d92588cc6351286de13e3b5d70ecc768888 (patch)
treeb42709c131a2d12f365ef68260a4170958a7b69e /drivers/nvme/host/constants.c
parent679c54f2de672b7d79d02f8c4ad483ff6dd8ce2e (diff)
nvme: don't always build constants.o
The entire content of constants.c if guarded by an ifdef, so switch to just building the file conditionally instead. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Keith Busch <kbusch@kernel.org> Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com> Reviewed-by: Sagi Grimberg <sagi@grimberg.me> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/nvme/host/constants.c')
-rw-r--r--drivers/nvme/host/constants.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/nvme/host/constants.c b/drivers/nvme/host/constants.c
index 4910543f00ff..6973c2a17c13 100644
--- a/drivers/nvme/host/constants.c
+++ b/drivers/nvme/host/constants.c
@@ -6,7 +6,6 @@
#include "nvme.h"
-#ifdef CONFIG_NVME_VERBOSE_ERRORS
static const char * const nvme_ops[] = {
[nvme_cmd_flush] = "Flush",
[nvme_cmd_write] = "Write",
@@ -185,4 +184,3 @@ const unsigned char *nvme_get_admin_opcode_str(u8 opcode)
return nvme_admin_ops[opcode];
return "Unknown";
}
-#endif /* CONFIG_NVME_VERBOSE_ERRORS */