diff options
author | Daniel Roschka <danielroschka@phoenitydawn.de> | 2017-02-22 15:17:29 -0700 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2017-02-22 15:17:29 -0700 |
commit | 124298bd03acebd9c9da29a794718aca31bec1f7 (patch) | |
tree | f0cb6c5fe1bd7c38f88aeea24c85c49f854793be /drivers/nvme | |
parent | 8f4e8dace3d182132c8ffbcf243dda85def6c209 (diff) | |
download | op-kernel-dev-124298bd03acebd9c9da29a794718aca31bec1f7.zip op-kernel-dev-124298bd03acebd9c9da29a794718aca31bec1f7.tar.gz |
nvme: detect NVMe controller in recent MacBooks
Adds support for detection of the NVMe controller found in the
following recent MacBooks:
- Retina MacBook 2016 (MacBook9,1)
- 13" MacBook Pro 2016 without Touch Bar (MacBook13,1)
- 13" MacBook Pro 2016 with Touch Bar (MacBook13,2)
Signed-off-by: Daniel Roschka <danielroschka@phoenitydawn.de>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'drivers/nvme')
-rw-r--r-- | drivers/nvme/host/pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c index d38dae9..319f5c5 100644 --- a/drivers/nvme/host/pci.c +++ b/drivers/nvme/host/pci.c @@ -2120,6 +2120,7 @@ static const struct pci_device_id nvme_id_table[] = { .driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, }, { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) }, { PCI_DEVICE(PCI_VENDOR_ID_APPLE, 0x2001) }, + { PCI_DEVICE(PCI_VENDOR_ID_APPLE, 0x2003) }, { 0, } }; MODULE_DEVICE_TABLE(pci, nvme_id_table); |