All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] bus/pci: rename devargs parameter id to addr
@ 2018-10-03 19:40 Thomas Monjalon
  2018-10-03 19:40 ` [PATCH 2/2] devargs: rename enum items with singular form Thomas Monjalon
  2018-10-10  6:48 ` [PATCH 1/2] bus/pci: rename devargs parameter id to addr Andrew Rybchenko
  0 siblings, 2 replies; 5+ messages in thread
From: Thomas Monjalon @ 2018-10-03 19:40 UTC (permalink / raw)
  To: gaetan.rivet; +Cc: dev

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>
---
 drivers/bus/pci/pci_params.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/bus/pci/pci_params.c b/drivers/bus/pci/pci_params.c
index 7630d4845..77b722ba9 100644
--- a/drivers/bus/pci/pci_params.c
+++ b/drivers/bus/pci/pci_params.c
@@ -12,12 +12,12 @@
 #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;
-- 
2.19.0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-10-11 12:02 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-03 19:40 [PATCH 1/2] bus/pci: rename devargs parameter id to addr Thomas Monjalon
2018-10-03 19:40 ` [PATCH 2/2] devargs: rename enum items with singular form Thomas Monjalon
2018-10-10  6:49   ` Andrew Rybchenko
2018-10-10  6:48 ` [PATCH 1/2] bus/pci: rename devargs parameter id to addr Andrew Rybchenko
2018-10-11 12:02   ` Thomas Monjalon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.