diff options
author | Keith Busch <keith.busch@intel.com> | 2016-05-02 23:14:24 +0200 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2016-05-18 01:14:21 +0200 |
commit | 99466e708ddce8904c8635c213f2deb523ef4fb9 (patch) | |
tree | 585ba4c198f3f431041808c21a17306447743aff /drivers/nvme | |
parent | NVMe: Short-cut removal on surprise hot-unplug (diff) | |
download | linux-99466e708ddce8904c8635c213f2deb523ef4fb9.tar.xz linux-99466e708ddce8904c8635c213f2deb523ef4fb9.zip |
NVMe: Add device ID's with stripe quirk
Adds two Intel controllers that have the "stripe" quirk.
Signed-off-by: Keith Busch <keith.busch@intel.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'drivers/nvme')
-rw-r--r-- | drivers/nvme/host/pci.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c index 3bdcf0e34fd6..78dca3193ca4 100644 --- a/drivers/nvme/host/pci.c +++ b/drivers/nvme/host/pci.c @@ -2109,6 +2109,12 @@ static const struct pci_device_id nvme_id_table[] = { { PCI_VDEVICE(INTEL, 0x0953), .driver_data = NVME_QUIRK_STRIPE_SIZE | NVME_QUIRK_DISCARD_ZEROES, }, + { PCI_VDEVICE(INTEL, 0x0a53), + .driver_data = NVME_QUIRK_STRIPE_SIZE | + NVME_QUIRK_DISCARD_ZEROES, }, + { PCI_VDEVICE(INTEL, 0x0a54), + .driver_data = NVME_QUIRK_STRIPE_SIZE | + NVME_QUIRK_DISCARD_ZEROES, }, { PCI_VDEVICE(INTEL, 0x5845), /* Qemu emulated controller */ .driver_data = NVME_QUIRK_IDENTIFY_CNS, }, { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) }, |