From: Rami Rosen Date: Thu, 26 Jul 2018 18:31:23 +0000 (+0300) Subject: bus/pci: fix a typo X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=73d15621039f130c88c776fb1cfb9eb2644902d1;p=dpdk.git 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 --- 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