diff options
author | Christoph Hellwig <hch@lst.de> | 2015-11-26 09:08:36 +0100 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2015-12-01 10:59:38 -0700 |
commit | 21d34711e1b5970acfb22bddf1fefbfbd7e0123b (patch) | |
tree | 3b5c0d963a5a0f0bd5dc3382a9c1fb1e31ae9c0c /drivers/nvme/host/Makefile | |
parent | 71bd150c71072014d98bff6dc2db3229306ece35 (diff) | |
download | op-kernel-dev-21d34711e1b5970acfb22bddf1fefbfbd7e0123b.zip op-kernel-dev-21d34711e1b5970acfb22bddf1fefbfbd7e0123b.tar.gz |
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/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/Makefile b/drivers/nvme/host/Makefile index 219dc206..3e26dc9 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 |