bus/pci: fix a typo
authorRami Rosen <rami.rosen@intel.com>
Thu, 26 Jul 2018 18:31:23 +0000 (21:31 +0300)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 26 Jul 2018 19:23:16 +0000 (21:23 +0200)
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 <rami.rosen@intel.com>
Acked-by: John McNamara <john.mcnamara@intel.com>
drivers/bus/pci/pci_common.c

index 94b0f41..b3879a9 100644 (file)
@@ -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