git.droids-corp.org
/
dpdk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2197313
)
bus/pci: fix a typo
author
Rami Rosen
<rami.rosen@intel.com>
Thu, 26 Jul 2018 18:31:23 +0000
(21:31 +0300)
committer
Thomas 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
patch
|
blob
|
history
diff --git
a/drivers/bus/pci/pci_common.c
b/drivers/bus/pci/pci_common.c
index
94b0f41
..
b3879a9
100644
(file)
--- 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 name
a
+ * given name as its name
.
*/
dev->device.name = dev->device.devargs->name;
else