bus/pci: rename devargs parameter id to addr
authorThomas Monjalon <thomas@monjalon.net>
Wed, 3 Oct 2018 12:44:30 +0000 (14:44 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 11 Oct 2018 11:57:29 +0000 (13:57 +0200)
We could match devices by their PCI id (vendor id, device id, etc).
But for now, only matching by PCI address is implemented.
The devargs parameter "id" is renamed "addr" to reflect its real meaning.

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Reviewed-by: Andrew Rybchenko <arybchenko@solarflare.com>
drivers/bus/pci/pci_params.c

index 7630d48..77b722b 100644 (file)
 #include "private.h"
 
 enum pci_params {
-       RTE_PCI_PARAMS_ID,
+       RTE_PCI_PARAMS_ADDR,
        RTE_PCI_PARAMS_MAX,
 };
 
 static const char * const pci_params_keys[] = {
-       [RTE_PCI_PARAMS_ID] = "id",
+       [RTE_PCI_PARAMS_ADDR] = "addr",
        [RTE_PCI_PARAMS_MAX] = NULL,
 };
 
@@ -47,7 +47,7 @@ pci_dev_match(const struct rte_device *dev,
                return 0;
        pdev = RTE_DEV_TO_PCI_CONST(dev);
        /* if any field does not match. */
-       if (rte_kvargs_process(kvlist, "id",
+       if (rte_kvargs_process(kvlist, pci_params_keys[RTE_PCI_PARAMS_ADDR],
                               &pci_addr_kv_cmp,
                               (void *)(intptr_t)&pdev->addr))
                return 1;