From: Chaoyong He Date: Thu, 25 Feb 2021 11:46:22 +0000 (+0200) Subject: doc: fix multiport syntax in nfp guide X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=8202309f9f76b46b1c2e219263a072fe73d21321;p=dpdk.git doc: fix multiport syntax in nfp guide Fix up the suffix of the PCI ID to be consistent with the code. Fixes: 979f2bae0714 ("doc: improve multiport PF in nfp guide") Cc: stable@dpdk.org Signed-off-by: Chaoyong He Signed-off-by: Heinrich Kuhn --- diff --git a/doc/guides/nics/nfp.rst b/doc/guides/nics/nfp.rst index fef99973b6..bf8be723b0 100644 --- a/doc/guides/nics/nfp.rst +++ b/doc/guides/nics/nfp.rst @@ -117,15 +117,15 @@ although once they are created, DPDK apps should be able to use them as normal PCI ports. NFP ports belonging to same PF can be seen inside PMD initialization with a -suffix added to the PCI ID: wwww:xx:yy.z_port_n. For example, a PF with PCI ID +suffix added to the PCI ID: wwww:xx:yy.z_portn. For example, a PF with PCI ID 0000:03:00.0 and four ports is seen by the PMD code as: .. code-block:: console - 0000:03:00.0_port_0 - 0000:03:00.0_port_1 - 0000:03:00.0_port_2 - 0000:03:00.0_port_3 + 0000:03:00.0_port0 + 0000:03:00.0_port1 + 0000:03:00.0_port2 + 0000:03:00.0_port3 .. Note::