qat: fix probing
The class id is not filled and makes probing to fail. Updated the code to use RTE_PCI_DEVICE which fills the class id with a wildcard value. Fixes: 701c8d80c820 ("pci: support class id probing") Signed-off-by: Deepak Kumar Jain <deepak.k.jain@intel.com>
This commit is contained in:
parent
913154efa7
commit
58a4037046
@ -69,10 +69,7 @@ static struct rte_cryptodev_ops crypto_qat_ops = {
|
|||||||
|
|
||||||
static struct rte_pci_id pci_id_qat_map[] = {
|
static struct rte_pci_id pci_id_qat_map[] = {
|
||||||
{
|
{
|
||||||
.vendor_id = 0x8086,
|
RTE_PCI_DEVICE(0x8086, 0x0443),
|
||||||
.device_id = 0x0443,
|
|
||||||
.subsystem_vendor_id = PCI_ANY_ID,
|
|
||||||
.subsystem_device_id = PCI_ANY_ID
|
|
||||||
},
|
},
|
||||||
{.device_id = 0},
|
{.device_id = 0},
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user