regex/octeontx2: fix PCI table overflow

Sentinel was missing from pci_id_ree_table[] array initialization
which caused it to overflow.

Bugzilla ID: 603
Fixes: 4cd1c5fd9 ("regex/octeontx2: introduce REE driver")
Cc: stable@dpdk.org

Signed-off-by: Guy Kaneti <guyk@marvell.com>
This commit is contained in:
Guy Kaneti 2021-01-03 13:01:28 +02:00 committed by Thomas Monjalon
parent 97544f85bd
commit 86d8b57e37

View File

@ -988,6 +988,9 @@ static struct rte_pci_id pci_id_ree_table[] = {
RTE_PCI_DEVICE(PCI_VENDOR_ID_CAVIUM,
PCI_DEVID_OCTEONTX2_RVU_REE_PF)
},
{
.vendor_id = 0,
}
};
static struct rte_pci_driver otx2_regexdev_pmd = {