devargs: rename enum items with singular form

The enum names are *_params (plural form).
And the items are also using the plural form: *_PARAMS_*.
It looks more natural to use the singular form *_PARAM_* for items.

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Reviewed-by: Andrew Rybchenko <arybchenko@solarflare.com>
This commit is contained in:
Thomas Monjalon 2018-10-03 14:55:11 +02:00
parent 4e7a69c9d9
commit 3f7a40c670
3 changed files with 9 additions and 9 deletions

View File

@ -12,13 +12,13 @@
#include "private.h"
enum pci_params {
RTE_PCI_PARAMS_ADDR,
RTE_PCI_PARAMS_MAX,
RTE_PCI_PARAM_ADDR,
RTE_PCI_PARAM_MAX,
};
static const char * const pci_params_keys[] = {
[RTE_PCI_PARAMS_ADDR] = "addr",
[RTE_PCI_PARAMS_MAX] = NULL,
[RTE_PCI_PARAM_ADDR] = "addr",
[RTE_PCI_PARAM_MAX] = NULL,
};
static int
@ -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, pci_params_keys[RTE_PCI_PARAMS_ADDR],
if (rte_kvargs_process(kvlist, pci_params_keys[RTE_PCI_PARAM_ADDR],
&pci_addr_kv_cmp,
(void *)(intptr_t)&pdev->addr))
return 1;

View File

@ -11,11 +11,11 @@
#include "vdev_private.h"
enum vdev_params {
RTE_VDEV_PARAMS_MAX,
RTE_VDEV_PARAM_MAX,
};
static const char * const vdev_params_keys[] = {
[RTE_VDEV_PARAMS_MAX] = NULL,
[RTE_VDEV_PARAM_MAX] = NULL,
};
static int

View File

@ -15,11 +15,11 @@
#include "ethdev_private.h"
enum eth_params {
RTE_ETH_PARAMS_MAX,
RTE_ETH_PARAM_MAX,
};
static const char * const eth_params_keys[] = {
[RTE_ETH_PARAMS_MAX] = NULL,
[RTE_ETH_PARAM_MAX] = NULL,
};
struct eth_dev_match_arg {