From 73d15621039f130c88c776fb1cfb9eb2644902d1 Mon Sep 17 00:00:00 2001 From: Rami Rosen Date: Thu, 26 Jul 2018 21:31:23 +0300 Subject: [PATCH] bus/pci: fix a typo This patch fixes a trivial typo in pci_common.c. Fixes: 23eaa9059ec2 ("bus/pci: use given name as generic name") Cc: stable@dpdk.org Signed-off-by: Rami Rosen Acked-by: John McNamara --- drivers/bus/pci/pci_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/bus/pci/pci_common.c b/drivers/bus/pci/pci_common.c index 94b0f4143e..b3879a9ade 100644 --- a/drivers/bus/pci/pci_common.c +++ b/drivers/bus/pci/pci_common.c @@ -72,7 +72,7 @@ pci_name_set(struct rte_pci_device *dev) */ if (devargs != NULL) /* If an rte_devargs exists, the generic rte_device uses the - * given name as its namea + * given name as its name. */ dev->device.name = dev->device.devargs->name; else -- 2.20.1