From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.tuxdriver.com (charlotte.tuxdriver.com [70.61.120.58]) by dpdk.org (Postfix) with ESMTP id 0FF4B558B for ; Thu, 7 Jul 2016 18:13:16 +0200 (CEST) Received: from [2606:a000:111b:40ed:7aac:c0ff:fec2:933b] (helo=localhost) by smtp.tuxdriver.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1bLBv5-0006eG-NJ; Thu, 07 Jul 2016 12:13:05 -0400 Date: Thu, 7 Jul 2016 12:12:40 -0400 From: Neil Horman To: Thomas Monjalon Cc: dev@dpdk.org Message-ID: <20160707161240.GI26064@hmsreliant.think-freely.org> References: <1467905790-10597-1-git-send-email-thomas.monjalon@6wind.com> <1467905790-10597-11-git-send-email-thomas.monjalon@6wind.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1467905790-10597-11-git-send-email-thomas.monjalon@6wind.com> User-Agent: Mutt/1.6.1 (2016-04-27) X-Spam-Score: -1.0 (-) X-Spam-Status: No Subject: Re: [dpdk-dev] [PATCH 10/11] doc: fix syntax in pmdinfogen guide X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 16:13:16 -0000 On Thu, Jul 07, 2016 at 05:36:29PM +0200, Thomas Monjalon wrote: > Sphynx reports this error: > > doc/guides/prog_guide/dev_kit_build_system.rst:337: WARNING: > Pygments lexer name u'C' is not known > > Fixes: 737ddf3fb ("doc: add prog guide section documenting pmdinfo script") > > Signed-off-by: Thomas Monjalon > --- > doc/guides/prog_guide/dev_kit_build_system.rst | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/doc/guides/prog_guide/dev_kit_build_system.rst b/doc/guides/prog_guide/dev_kit_build_system.rst > index 1dc1388..18a3010 100644 > --- a/doc/guides/prog_guide/dev_kit_build_system.rst > +++ b/doc/guides/prog_guide/dev_kit_build_system.rst > @@ -319,8 +319,7 @@ instance the macro: > > .. code-block:: c > > - PMD_REGISTER_DRIVER(drv, name) > - > + PMD_REGISTER_DRIVER(drv, name) > > Creates the following symbol: > > @@ -334,7 +333,7 @@ can be exported from the object file and used to produce a hardware support > description, that pmdinfogen then encodes into a json formatted string in the > following format: > > -.. code-block:: C > +.. code-block:: c > > static char ="PMD_INFO_STRING=\"{'name' : '', ...}\""; > > -- > 2.7.0 > > Acked-by: Neil Horman