summaryrefslogtreecommitdiffstats
path: root/drivers/nvme/host/Makefile
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2015-11-26 09:08:36 +0100
committerJens Axboe <axboe@fb.com>2015-12-01 10:59:38 -0700
commit21d34711e1b5970acfb22bddf1fefbfbd7e0123b (patch)
tree3b5c0d963a5a0f0bd5dc3382a9c1fb1e31ae9c0c /drivers/nvme/host/Makefile
parent71bd150c71072014d98bff6dc2db3229306ece35 (diff)
nvme: split command submission helpers out of pci.c
Create a new core.c and start by adding the command submission helpers to it, which are already abstracted away from the actual hardware queues by the block layer. Signed-off-by: Christoph Hellwig <hch@lst.de> Acked-by: Keith Busch <keith.busch@intel.com> Signed-off-by: Keith Busch <keith.busch@intel.com> Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'drivers/nvme/host/Makefile')
-rw-r--r--drivers/nvme/host/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/Makefile b/drivers/nvme/host/Makefile
index 219dc206fa5f..3e26dc921c38 100644
--- a/drivers/nvme/host/Makefile
+++ b/drivers/nvme/host/Makefile
@@ -1,4 +1,4 @@
obj-$(CONFIG_BLK_DEV_NVME) += nvme.o
-nvme-y += pci.o scsi.o lightnvm.o
+nvme-y += core.o pci.o scsi.o lightnvm.o