On Thu, Apr 1, 2021 at 12:34 AM Thomas Monjalon <tho...@monjalon.net> wrote: > @@ -95,7 +95,9 @@ struct rte_pci_addr { > }; > > /** Any PCI device identifier (vendor, device, ...) */ > -#define PCI_ANY_ID (0xffff) > +#define RTE_PCI_ANY_ID (0xffff) > +/** @deprecated Replaced with RTE_PCI_ANY_ID */ > +#define PCI_ANY_ID RTE_PCI_ANY_ID
We may also tag it for applications to notice the deprecation: #define PCI_ANY_ID RTE_DEPRECATED(PCI_ANY_ID) RTE_PCI_ANY_ID > #define RTE_CLASS_ANY_ID (0xffffff) > > /** -- David Marchand