From 0deb91318b15f0d12839b23433e2720722504d25 Mon Sep 17 00:00:00 2001 From: Jon Nettleton Date: Thu, 3 Aug 2017 02:31:00 -0700 Subject: nvme: Detect devices that are class Storage Express This adds support to detect the catchall PCI class for NVMe devices. It allows the drivers to work with most NVMe devices that don't need specific detection due to quirks etc. Tested against a Samsung 960 EVO drive. Signed-off-by: Jon Nettleton Signed-off-by: Bin Meng Reviewed-by: Tom Rini --- drivers/nvme/nvme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'drivers/nvme') diff --git a/drivers/nvme/nvme.c b/drivers/nvme/nvme.c index a60682a..feea02a 100644 --- a/drivers/nvme/nvme.c +++ b/drivers/nvme/nvme.c @@ -832,7 +832,7 @@ U_BOOT_DRIVER(nvme) = { }; struct pci_device_id nvme_supported[] = { - { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x0953) }, + { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, ~0) }, {} }; -- cgit v1.1