aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Günther <guenther@tum.de>2015-11-03 18:49:45 -0500
committerJens Axboe <axboe@fb.com>2015-11-11 11:36:57 -0500
commitc74dc7801d515d01847fd5cf2b472489fa5717b1 (patch)
tree274b281887e6d756490ece72a3f98a0d0acd5d0f
parenta310acd7a7ea53533886c11bb7edd11ffd61a036 (diff)
NVMe: add support for Apple NVMe controller
Add PCI ID of Apple's NVMe controller. Signed-off-by: Stephan Guenther <guenther@tum.de> Signed-off-by: Maurice Leclaire <leclaire@in.tum.de> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jens Axboe <axboe@fb.com>
-rw-r--r--drivers/nvme/host/pci.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c
index 3435d79a99ee..8187df204695 100644
--- a/drivers/nvme/host/pci.c
+++ b/drivers/nvme/host/pci.c
@@ -3403,6 +3403,7 @@ static const struct pci_error_handlers nvme_err_handler = {
3403 3403
3404static const struct pci_device_id nvme_id_table[] = { 3404static const struct pci_device_id nvme_id_table[] = {
3405 { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) }, 3405 { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) },
3406 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, 0x2001) },
3406 { 0, } 3407 { 0, }
3407}; 3408};
3408MODULE_DEVICE_TABLE(pci, nvme_id_table); 3409MODULE_DEVICE_TABLE(pci, nvme_id_table);